export interface PaperClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element unless `square={true}`. */ rounded: string; /** Styles applied to the root element if `variant="outlined"`. */ outlined: string; /** Styles applied to the root element if `variant="elevation"`. */ elevation: string; /** Styles applied to the root element if `elevation={0}`. */ elevation0: string; /** Styles applied to the root element if `elevation={1}`. */ elevation1: string; /** Styles applied to the root element if `elevation={2}`. */ elevation2: string; /** Styles applied to the root element if `elevation={3}`. */ elevation3: string; /** Styles applied to the root element if `elevation={4}`. */ elevation4: string; /** Styles applied to the root element if `elevation={5}`. */ elevation5: string; } export type PaperClassKey = keyof PaperClasses; export declare function getPaperUtilityClass(slot: string): string; declare const paperClasses: PaperClasses; export default paperClasses;