import React, { Dispatch, SetStateAction, ReactElement } from 'react'; export declare type SelectedOptionsType = unknown[]; export declare type SelectedOptionsContextType = [SelectedOptionsType, Dispatch>]; export declare const SelectedOptionsContext: React.Context; interface SelectedOptionsProviderProps { children: ReactElement; controllableSelectedOptions?: unknown[]; onSelect: (value: unknown | unknown[]) => void; multiple?: boolean; } export declare function SelectedOptionsProvider({ children, controllableSelectedOptions, onSelect, multiple }: SelectedOptionsProviderProps): JSX.Element; export {};