export declare const INPUT_TYPES: { readonly TEXT: "text"; readonly EMAIL: "email"; readonly PASSWORD: "password"; readonly NUMBER: "number"; readonly TEL: "tel"; readonly URL: "url"; readonly SEARCH: "search"; }; export declare const BUTTON_TYPES: { readonly BUTTON: "button"; readonly SUBMIT: "submit"; readonly RESET: "reset"; }; export declare const DEFAULT_CURRENCY_SYMBOLS: { readonly USD: "$"; readonly EUR: "€"; readonly GBP: "£"; readonly UAH: "₴"; readonly RUB: "₽"; readonly BTC: "₿"; readonly ETH: "Ξ"; }; export type InputType = (typeof INPUT_TYPES)[keyof typeof INPUT_TYPES]; export type ButtonType = (typeof BUTTON_TYPES)[keyof typeof BUTTON_TYPES]; //# sourceMappingURL=index.d.ts.map