import * as React from 'react'; import { OnSelectT } from '../commons'; export declare type IDropDown = { id: number | string; title: any; selected: boolean; style?: { [key: string]: string; }; }; export declare type DropDownProps = { name: string; data: IDropDown[]; title: string; onSelect: (e: OnSelectT) => void; style?: {}; required?: boolean; [key: string]: any; }; declare const DropDown: React.FC; export default DropDown;