export interface ListClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `density="standard"`. */ densityStandard: string; /** Class name applied to the root element if `density="compact"`. */ densityCompact: string; /** Class name applied to the root element if `density="comfortable"`. */ densityComfortable: string; } export type ListClassKey = keyof ListClasses; export declare function getListUtilityClass(slot: string): string; declare const ListClasses: ListClasses; export default ListClasses;