export interface DialogRootClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the container element. */ container: string; /** Class name applied to the Paper component. */ paper: string; /** Class name applied to the Paper component if `maxWidth=false`. */ widthFalse: string; /** Class name applied to the Paper component if `maxWidth="xs"`. */ widthXs: string; /** Class name applied to the Paper component if `maxWidth="sm"`. */ widthSm: string; /** Class name applied to the Paper component if `maxWidth="md"`. */ widthMd: string; /** Class name applied to the Paper component if `maxWidth="lg"`. */ widthLg: string; /** Class name applied to the Paper component if `maxWidth="xl"`. */ widthXl: string; /** Class name applied to the Paper component if `fullWidth={true}`. */ fullWidth: string; /** Class name applied to the Paper component if `fullScreen={true}`. */ fullScreen: string; } export type DialogRootClassKey = keyof DialogRootClasses; export declare function getDialogRootUtilityClass(slot: string): string; declare const dialogRootClasses: DialogRootClasses; export default dialogRootClasses;