UNPKG

797 BTypeScriptView Raw
1export interface ListItemTextClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the Typography component if primary and secondary are set. */
5 multiline: string;
6 /** Styles applied to the Typography component if dense. */
7 dense: string;
8 /** Styles applied to the root element if `inset={true}`. */
9 inset: string;
10 /** Styles applied to the primary `Typography` component. */
11 primary: string;
12 /** Styles applied to the secondary `Typography` component. */
13 secondary: string;
14}
15export declare type ListItemTextClassKey = keyof ListItemTextClasses;
16export declare function getListItemTextUtilityClass(slot: string): string;
17declare const listItemTextClasses: ListItemTextClasses;
18export default listItemTextClasses;