export declare const tags: { H1: string; H2: string; H3: string; H4: string; H5: string; H6: string; }; export declare const sizes: { MD: string; LG: string; XL: string; XXL: string; }; export declare type Tags = typeof tags[keyof typeof tags]; export declare type Sizes = typeof sizes[keyof typeof sizes]; export interface HeadingProps { as?: Tags; size?: Sizes; }