import { default as React, FC } from 'react'; interface Props { children: any; setQuery: (query: any) => void; } export declare const SelectOptions: FC; type SelectOptionProps = { children: React.ReactNode; value: any; className: any; disable: boolean; }; export type SelectRef = HTMLLIElement; export declare const SelectOption: React.ForwardRefExoticComponent>; export {};