export declare const TextTypes: { readonly h1: "h1"; readonly h2: "h2"; readonly h3: "h3"; readonly "h3-error": "h3-error"; readonly "input-text": "input-text"; readonly text: "text"; readonly "input-placeholder": "input-placeholder"; readonly "dropdown-selected": "dropdown-selected"; readonly comment: "comment"; readonly link: "link"; readonly "component-comment": "component-comment"; readonly error: "error"; readonly "menu-item": "menu-item"; readonly "menu-item-selected": "menu-item-selected"; readonly "text-btn-big": "text-btn-big"; readonly "text-btn-small": "text-btn-small"; }; export type TextTypes = (typeof TextTypes)[keyof typeof TextTypes]; export declare const BoldTypes: { readonly bold: "bold"; readonly semi: "semi"; readonly normal: "normal"; }; export type BoldTypes = (typeof BoldTypes)[keyof typeof BoldTypes];