import React from 'react'; import { SelectProps } from 'antd'; interface ISelectProps extends SelectProps { options: any[]; label?: string; name?: string; req?: boolean; message?: string; tokenSeparators?: string[]; mode?: 'tags' | 'multiple'; onSelect?: any; } export declare const Select: React.FC; export {};