import type * as React from 'react'; import type { Override } from '../helpers/overrides'; import type { STATE_CHANGE_TYPE, SIZE, TYPE } from './constants'; import type { OnItemSelectFn } from '../menu'; export declare type ChangeAction = keyof typeof STATE_CHANGE_TYPE; export declare type Size = keyof typeof SIZE; export declare type Type = keyof typeof TYPE; export declare type Option = Readonly<{ id?: string | number; label?: React.ReactNode; disabled?: boolean; clearableValue?: boolean; isCreatable?: boolean; __optgroup?: string; searchTags?: Array; [x: string]: any; }>; export declare type Value = ReadonlyArray