type FontSize = 'default' | 'small' | 'medium' | 'large' | 'extraLarge';
type FontType = 'default' | 'monospace';
type FontWeight = 'default' | 'lighter' | 'bolder';

export type { FontSize, FontType, FontWeight };
