import React from "react"; import { Theme } from "../../../types/style-context"; import { CustomProps as ControlCustomProps } from "./Control"; export interface Option { value: string | number; label: string; } export interface CustomStyles { container?: object; control?: object; singleValue?: object; menu?: object; menuList?: object; option?: object; valueContainer?: object; placeholder?: object; } export interface SelectRef { menuOpened: boolean; } interface Props { controlCustomProps?: ControlCustomProps; onChange: (Option: any) => void; options: Option[]; className?: string; styles?: CustomStyles; value?: Option; filterOption?: (Option: any) => boolean; disabled?: boolean; theme?: Theme; placeholder?: string; notFirstSelected?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;