export interface ListItemClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the inner `component` element if `disabled={true}`. */ disabled: string; /** Class name applied to the root element, if `nested={true}`. */ nested: string; /** Class name applied to the root element, if it is under a nested list item. */ nesting: string; /** Class name applied to the root element, if `sticky={true}`. */ sticky: string; } export type ListItemClassKey = keyof ListItemClasses; export declare function getListItemUtilityClass(slot: string): string; declare const listItemClasses: ListItemClasses; export default listItemClasses;