export interface DrawerBodyClasses { /** Class name applied to the root element. */ root: 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 DrawerBodyClassKey = keyof DrawerBodyClasses; export declare function getDrawerBodyUtilityClass(slot: string): string; declare const drawerBodyClasses: DrawerBodyClasses; export default drawerBodyClasses;