export declare type FontWeightType = {
    thin: number;
    regular: number;
    medium: number;
    semiBold: number;
    bold: number;
};
export declare type FontSizeType = {
    extraSmall: string;
    small: string;
    medium: string;
    large: string;
    extraLarge: string;
};
declare type VariantsType = {
    paragraph: FontSizeType;
    heading: FontSizeType;
};
export declare type FontType = {
    family: string;
    weight: FontWeightType;
    sizes: {
        mobile: VariantsType;
        desktop: VariantsType;
    };
    fixedSize: FontSizeType;
};
export {};
