UNPKG

823 BTypeScriptView Raw
1export interface ListSubheaderClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `color="primary"`. */
5 colorPrimary: string;
6 /** Styles applied to the root element if `color="inherit"`. */
7 colorInherit: string;
8 /** Styles applied to the inner `component` element unless `disableGutters={true}`. */
9 gutters: string;
10 /** Styles applied to the root element if `inset={true}`. */
11 inset: string;
12 /** Styles applied to the root element unless `disableSticky={true}`. */
13 sticky: string;
14}
15export type ListSubheaderClassKey = keyof ListSubheaderClasses;
16export declare function getListSubheaderUtilityClass(slot: string): string;
17declare const listSubheaderClasses: ListSubheaderClasses;
18export default listSubheaderClasses;