import type { Props as SelectProps, SelectValue, SelectOptionProps } from "../Select"; import React from "react"; export interface Props extends Omit, "optionFilterProp" | "showSearch" | "optionLabelProp" | "options"> { options?: Array<{ value: string; label: string; }>; } export declare const SearchableSelect: ((props: Props) => React.JSX.Element) & { Option: React.ComponentType; };