export interface DrawerNavItemClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the container element. */ container: string; /** Class name applied to the label element. */ label: string; /** Class name applied to the rail label element. */ railLabel: string; /** Class name applied to the start decorator element. */ startDecorator: string; /** Class name applied to the end decorator element. */ trailingAction: string; /** Class name applied to the trailing label element. */ trailingLabel: string; /** Class name applied to the badge element. */ trailingBadge: string; /** Class name applied to the root element if `expanded=true`. */ expanded: string; /** Class name applied to the root element if `expanded=false`. */ collapsed: string; } export type DrawerNavItemClassKey = keyof DrawerNavItemClasses; export declare function getDrawerNavItemUtilityClass(slot: string): string; declare const DrawerNavItemClasses: DrawerNavItemClasses; export default DrawerNavItemClasses;