UNPKG

552 BTypeScriptView Raw
1export interface ListClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element unless `disablePadding={true}`. */
5 padding: string;
6 /** Styles applied to the root element if dense. */
7 dense: string;
8 /** Styles applied to the root element if a `subheader` is provided. */
9 subheader: string;
10}
11export type ListClassKey = keyof ListClasses;
12export declare function getListUtilityClass(slot: string): string;
13declare const listClasses: ListClasses;
14export default listClasses;