import { IconName } from '@fortawesome/fontawesome-common-types'; export interface OnChangeValueParameter { normal: string; masked: string; item: unknown; } export interface InputTextButtonAction { icon: IconName; onClick: () => void; disabled?: boolean; } export declare type InputListParams = string | { label: string; [key: string]: string; }; export declare type InputVariants = 'primary' | 'secondary' | 'tertiary'; export declare type MaskObj = { mask: 'phone' | 'cpf' | 'cnpj' | 'nis' | 'cep' | 'number' | string; decimalPlaces?: number; numberWithoutPonctuation?: boolean; allowNegative?: boolean; limitNumber?: number; }; //# sourceMappingURL=input-text.d.ts.map