export declare const getStyleProps: (style?: string | number | Object | (string | number | Object)[] | undefined) => {
    style: {
        display: string;
    };
    className: string;
} | {
    style: {
        constructor: Function;
        toString(): string;
        toLocaleString(): string;
        valueOf(): Object;
        hasOwnProperty(v: string | number | symbol): boolean;
        isPrototypeOf(v: Object): boolean;
        propertyIsEnumerable(v: string | number | symbol): boolean;
        display: string;
    };
    className?: undefined;
};
export declare const getMuiTheme: (appTheme: any) => {
    typography: {};
    palette: {
        primary: any;
        secondary: any;
    };
};
