import { ReactElement } from "react"; import { GroupBase } from "react-select"; import { SelectProps } from "./useSelect"; export interface SelectOption { label: string; value: TValue; isDisabled?: boolean; } /** * BaseSelect are input components used to choose a value from a set. * * @param {SelectProps} props - The props for the Select component * @returns {ReactElement} Select component */ export declare const BaseSelect: = GroupBase>(props: SelectProps) => ReactElement;