import React from 'react'; type InputComponentProps = { id: string; value: any; onChange: (value: any) => void; meta?: any; }; type InputComponent = React.FC; export declare function SelectInput({ value, onChange, meta }: InputComponentProps): React.JSX.Element; export declare function getInputComponent(type: string): InputComponent; export {};