import React from "react"; import { SelectProps } from "antd"; interface ISelectProps extends SelectProps { options: any[]; label?: string; name?: string; req?: boolean; defaultValue: any[]; message?: string; selectValue: any; tokenSeparators?: string[]; mode?: "tags" | "multiple"; onSelect?: (data: Record) => void; onChange: (data: string) => void; onCheckLimit?: (value: string) => void; limitErrorMessage?: string; showArrow: boolean; customView?: JSX.Element; } export declare const InviteInput: React.FC; export {};