import type { HTMLAttributes } from 'vue'; export interface TTypographyProps extends HTMLAttributes { fontStyle?: 'normal' | 'italic'; fontWeight?: 'bold' | 'semibold' | 'medium' | 'regular'; variant?: 'h1' | 'h2' | 'h3' | 'h4' | 's1' | 's2' | 's3' | 's4' | 'b0' | 'b1' | 'b2' | 'b3' | 'b4' | 'b5' | 'b6'; as?: string; color?: string; } //# sourceMappingURL=TTypography.types.d.ts.map