/** * Created by Aneree on 03/11/20. */ import { Dispatch, ReactNode, SetStateAction } from 'react'; import { SelectProps, Option, Value, OnChangeParams } from '../select/types'; export declare type SetStateFunc = Dispatch>; export declare type Id = string | number; export declare type AllOptionsMap = Record; export declare type GroupedOptions = Record>; export declare type LoadOptions = (input: string, groupFilters: { group: string; pageNumber: number; }[]) => Promise<{ groups: Array<{ group: string; options: Array