import React from 'react'; export interface FormControlProps { placeholder?: string; options?: any[]; valueKey?: string; labelKey?: string; children?: ((item: any) => JSX.Element); value?: any; onChange?: (value: any) => void; multiple?: boolean; size?: 'small' | 'medium'; fullWidth?: boolean; } export declare const FormControl: React.FC;