export type FontStyle = 'bold' | 'regular' | 'thin'; export type FontSize = '8xl' | '4xl' | 'xxl' | 'xl' | 'large' | 'medium' | 'small' | 'xs'; export type FontColor = 'subtle' | 'highlight' | 'body' | 'disabled' | 'link'; export type ElementSize = 'small' | 'medium' | 'large'; export type Alignment = 'left' | 'center' | 'right'; export type Direction = 'horizontal' | 'vertical'; export type HeaderLevel = 1 | 2 | 3 | 4 | 5 | 6; export type TargetProps = '_blank' | '_self' | '_parent' | '_top'; export declare const getSize: (size: any) => any;