import { FontWeight } from "./text";
import { CustomStylesType } from "./types";
export declare const getHeadingStyles: (options?: {
    version?: CustomStylesType;
    mbDown?: boolean;
}) => {
    [k: string]: any;
};
export declare const GlobalHeadingStyle: (version?: CustomStylesType) => {
    Title: {
        styles: {
            root: {
                fontWeight: FontWeight;
            };
        };
    };
};
