export interface ObjectLiteralType<P = any> {
    [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;
    tokenIndex: ObjectLiteralType;
} & ObjectLiteralType;
export declare type StylePropsType<T = MUIThemeType> = {
    theme: T;
};
export declare type BreakpointNameType = 'lg' | 'sm' | 'md' | 'xs' | 'xl';
