import React from "react"; interface TextInputProps { label?: string; value: string; onChange: (value: string) => void; onBlur?: () => void; } declare const TextInput: ({ label, value, onChange, onBlur }: TextInputProps) => React.JSX.Element; export default TextInput;