/// export interface InputTextAffixProps { text: string; size?: "lg" | "md" | "sm"; } declare const InputTextAffix: ({ text, size }: InputTextAffixProps) => JSX.Element; export default InputTextAffix;