export interface ObjectLiteralType

{ [k: string]: P; } export declare type ScalarType = string | number; export declare type MUIThemeType = { breakpoints: { up: (bp: string) => string; down: (bp: string) => string; between: (bp: string, bpe: string) => string; }; spacing: (value: number) => number | string; tokenIndex: ObjectLiteralType; } & ObjectLiteralType; export declare type StylePropsType = { theme?: T; }; export declare type BreakpointNameType = 'lg' | 'sm' | 'md' | 'xs' | 'xl';