export declare const FONTWEIGHT_MAP: { readonly light: "light"; readonly regular: "regular"; readonly medium: "medium"; readonly 'semi-bold': "semiBold"; }; export type TypographyColorIntent = 'body' | 'subdued' | 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'inverted' | 'archived' | 'disabled' | 'muted' | 'inactive'; export type TypographyIntent = TypographyColorIntent | 'ai';