/// import { Props, GroupBase, MultiValue, SingleValue } from "react-select"; export interface Option { label: string; value: string | number; type?: string; } export declare type GroupedOption = GroupBase; export declare type SelectValue = MultiValue | SingleValue; export default function Select(props: Props): JSX.Element; export declare function isOption(o: Option | undefined): o is Option; export declare function toOption(item?: { id: number | string; name: string; }): undefined | Option; export declare function isMultiOptions(values: SelectValue | null): values is MultiValue; export declare function getOption(options: Option[], value?: Pick): Option | undefined;