import { Options, Value, Type } from './types'; declare const defaultProps: { autoFocus: boolean; backspaceRemoves: boolean; clearable: boolean; closeOnSelect: boolean; creatable: boolean; deleteRemoves: boolean; disabled: boolean; error: boolean; positive: boolean; escapeClearsValue: boolean; filterOptions: ((options: Value, filterValue: string, excludeOptions: Value | null | undefined, a: { valueKey: string; labelKey: string; }) => Value) | null | undefined; filterOutSelected: boolean; isLoading: boolean; labelKey: string; maxDropdownHeight: string; multi: boolean; onBlur: (...args: any[]) => void; onBlurResetsInput: boolean; onChange: (...args: any[]) => void; onFocus: (...args: any[]) => void; onInputChange: (...args: any[]) => void; onCloseResetsInput: boolean; onSelectResetsInput: boolean; openOnClick: boolean; startOpen: boolean; options: Options; overrides: {}; required: boolean; searchable: boolean; type: "overlay" | Type | "mobile"; value: Value; valueKey: string; placement: "auto" | "bottom" | "left" | "right" | "top" | "topLeft" | "topRight" | "rightTop" | "rightBottom" | "bottomRight" | "bottomLeft" | "leftBottom" | "leftTop" | undefined; virtual: boolean; popoverMinWidth: string; }; export default defaultProps;