import React from 'react'; import { ISelect } from './index'; export interface IFormProps extends ISelect { name: string; onClear?: (val: string) => void; required: boolean; onSelecting: (val1: string, val2: string) => void; } export declare const FormSelect: ({ ...props }: IFormProps & React.SelectHTMLAttributes) => JSX.Element;