export declare const FONT_SIZES: { readonly Caption: string; readonly BodySmall: string; readonly BodyRegular: string; readonly BodyLarge: string; readonly Headline: string; readonly DisplaySmall: string; readonly DisplayMedium: string; readonly DisplayLarge: string; }; export declare enum CapUIFontSize { Caption = "Caption", BodySmall = "BodySmall", BodyRegular = "BodyRegular", BodyLarge = "BodyLarge", Headline = "Headline", DisplaySmall = "DisplaySmall", DisplayMedium = "DisplayMedium", DisplayLarge = "DisplayLarge" } export type ThemeFontSizesValues = keyof typeof FONT_SIZES | (string & {}) | (number & {});