export interface IFormComponentConfig { key: string; type: "Textbox" | "Textarea" | "Radio" | "Checkbox" | "Switch" | "Date" | "Time" | "Date-time" | "Date-range" | "Month" | "Number" | Dropdowns; label?: string; value: any; onChange: (event: any) => void; debounce?: boolean; props?: any; schemaProps?: any; } export type Dropdowns = "Dropdown" | "MultiSelectDropdown" | "MultiSelectSearchDropdown" | "MultiSelectSearchSelectAllDropdown"; export interface IFormComponentProps { config: IFormComponentConfig; } declare const FinalFormComponentAdapter: ({ input, meta, ...rest }: any) => import("react/jsx-runtime").JSX.Element; export default FinalFormComponentAdapter;