export declare const TYPOGRAPHY: { 'typography-heading-2xlarge': string; 'typography-heading-xlarge': string; 'typography-heading-large': string; 'typography-heading-medium': string; 'typography-heading-small': string; 'typography-heading-xsmall': string; 'typography-body-large-regular': string; 'typography-body-large-bold': string; 'typography-body-large-bold-underline': string; 'typography-body-large-italic': string; 'typography-body-medium-regular': string; 'typography-body-medium-bold': string; 'typography-body-medium-bold-underline': string; 'typography-body-medium-italic': string; 'typography-body-small-regular': string; 'typography-body-small-bold': string; 'typography-body-small-bold-underline': string; 'typography-body-small-italic': string; 'typography-monoline-large': string; 'typography-monoline-medium': string; 'typography-monoline-small': string; 'typography-monoline-xsmall': string; }; export type TypographyTypes = keyof typeof TYPOGRAPHY; /** * `getTypographyTokenValue()` returns the CSS properties for a specific typography token */ export declare function getTypographyTokenValue(token: TypographyTypes): string;