1 2 3 4 5 6 7 8 9 10
export interface BackdropClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `invisible={true}`. */ invisible: string; } export type BackdropClassKey = keyof BackdropClasses; export declare function getBackdropUtilityClass(slot: string): string; declare const backdropClasses: BackdropClasses; export default backdropClasses;