interface TextInputProps { value: string; onChange: (value: string) => void; placeholder?: string; maxLength?: number; disabled?: boolean; onKeyDown?: React.KeyboardEventHandler; } export declare function TextInput({ value, onChange, placeholder, maxLength, disabled, onKeyDown, }: TextInputProps): import("react").JSX.Element; export {}; //# sourceMappingURL=TextInput.d.ts.map