import React from 'react'; interface TextInputProps { label: string; placeholder?: string; mask?: boolean; value: string; onChange: (value: string) => void; onSubmit: () => void; focused?: boolean; error?: string; } export declare function TextInput({ label, placeholder, mask, value, onChange, onSubmit, focused, error, }: TextInputProps): React.ReactElement; export {};