export declare const fontWeights: { readonly regular: 400; readonly medium: 500; readonly semiBold: 600; /** * @deprecated The font face used has always been a semibold font. Even * though a bold weight was offered, it still was rendering a semibold font. * This has been deprecated in favor of {@link semiBold} to more accurately * reflect the font face being used. */ readonly bold: 700; }; export declare const FontWeight: { readonly Regular: "regular"; readonly Medium: "medium"; readonly SemiBold: "semiBold"; /** @deprecated - Prefer {@link SemiBold} */ readonly Bold: "bold"; }; export type FontWeight = keyof typeof fontWeights; export default fontWeights; //# sourceMappingURL=fontWeights.d.ts.map