import React from 'react'; export interface FormInputProps { placeholder?: string; type?: string; value?: any; onChange?: (value: any) => void; } export declare const FormInput: React.FC;