import React from 'react'; interface TextInputProps { label: string; value: string; onChange: (e: React.ChangeEvent) => void; name: string; placeholder?: string; } declare const TextInput: React.FC; export default TextInput;