You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
560 B
TypeScript
15 lines
560 B
TypeScript
export interface PaginationClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the ul element. */
|
|
ul: string;
|
|
/** Styles applied to the root element if `variant="outlined"`. */
|
|
outlined: string;
|
|
/** Styles applied to the root element if `variant="text"`. */
|
|
text: string;
|
|
}
|
|
export type PaginationClassKey = keyof PaginationClasses;
|
|
export declare function getPaginationUtilityClass(slot: string): string;
|
|
declare const paginationClasses: PaginationClasses;
|
|
export default paginationClasses;
|