export declare enum FontTypeWeightEnum {
    name = "name",
    light = "light",
    regular = "regular",
    bold = "bold"
}
export type FontTypeWeight = {
    name: string;
    light: string;
    regular: string;
    bold: string;
};
export type FontWeightType = 'name' | 'light' | 'regular' | 'bold' | `${FontTypeWeightEnum}` | FontTypeWeightEnum;
