/// /// import React from 'react'; import { ThemeProps } from 'amis-core'; import { LocaleProps } from 'amis-core'; import { SpinnerExtraProps } from './Spinner'; export interface HistoryRecord { /** 历史记录值 */ value: string; /** 历史记录生成的unix时间戳 */ timestamp?: number; } export interface SearchHistoryOptions { /** 是否开启历史记录 */ enable: boolean; /** 本地存储历史记录的key */ key?: string; /** 历史记录数量上限 */ limit?: number; /** 历史记录下拉面板CSS类名 */ dropdownClassName?: string; } export interface SearchBoxProps extends ThemeProps, LocaleProps, SpinnerExtraProps { name?: string; disabled?: boolean; mini?: boolean; enhance?: boolean; clearable?: boolean; searchImediately?: boolean; onChange?: (text: string) => void; placeholder?: string; defaultValue?: string; value?: string; active?: boolean; defaultActive?: boolean; onActiveChange?: (active: boolean) => void; onSearch?: (value: string) => any; onCancel?: () => void; onFocus?: () => void; onBlur?: () => void; /** 历史记录配置 */ history?: SearchHistoryOptions; clearAndSubmit?: boolean; loading?: boolean; } export interface SearchBoxState { isFocused: boolean; isHistoryOpened: boolean; inputValue: string; historyRecords: HistoryRecord[]; } export declare class SearchBox extends React.Component { inputRef: React.RefObject; static defaultProps: { mini: boolean; enhance: boolean; clearable: boolean; searchImediately: boolean; history: Required; clearAndSubmit: boolean; }; state: { isHistoryOpened: boolean; isFocused: boolean; inputValue: string; historyRecords: any[]; }; lazyEmitSearch: import("lodash").DebouncedFunc<() => void>; componentDidUpdate(prevProps: SearchBoxProps): void; componentWillUnmount(): void; handleActive(): void; handleCancel(): void; handleChange(e: React.ChangeEvent): void; handleSearch(): void; handleKeyDown(e: React.KeyboardEvent): void; handleClear(): void; handleFocus(): void; handleBlur(e: React.FocusEvent): void; handleHistoryRecordSelect(record: HistoryRecord): void; /** 获取历史搜索配置 */ getHistoryOptions(): Required; /** 获取历史记录 */ getHistoryRecords(): any[]; /** 清空历史记录 */ clearHistoryRecords(): HistoryRecord[]; /** 删除一条历史记录 */ removeHistoryRecord(record: HistoryRecord): HistoryRecord[]; /** 新增一条历史记录 */ insertHistoryRecord(value: string): HistoryRecord[]; renderInput(isHistoryMode?: boolean): React.JSX.Element; renderTag(item: HistoryRecord, index: number): React.JSX.Element; renderHitoryMode(): React.JSX.Element; render(): React.JSX.Element; } declare const _default: { new (props: Omit, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps): { ref: any; childRef(ref: any): void; getWrappedInstance(): any; render(): React.JSX.Element; context: unknown; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }, keyof ThemeProps> & import("packages/amis-core/lib/theme").ThemeOuterProps>, nextState: Readonly<{}>, nextContext: any): void; }; displayName: string; contextType: React.Context; ComposedComponent: React.ComponentType<{ new (props: Pick, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }): { ref: any; childRef(ref: any): void; getWrappedInstance(): any; render(): React.JSX.Element; context: unknown; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): void; }; displayName: string; contextType: React.Context; ComposedComponent: React.ComponentType; } & import("hoist-non-react-statics").NonReactStatics & { ComposedComponent: typeof SearchBox; }>; } & import("hoist-non-react-statics").NonReactStatics<{ new (props: Pick, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }): { ref: any; childRef(ref: any): void; getWrappedInstance(): any; render(): React.JSX.Element; context: unknown; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): void; }; displayName: string; contextType: React.Context; ComposedComponent: React.ComponentType; } & import("hoist-non-react-statics").NonReactStatics & { ComposedComponent: typeof SearchBox; }, {}> & { ComposedComponent: { new (props: Pick, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }): { ref: any; childRef(ref: any): void; getWrappedInstance(): any; render(): React.JSX.Element; context: unknown; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, "classPrefix" | "classnames" | "className" | "theme" | "mobileUI" | "style" | "name" | "disabled" | "onBlur" | "onFocus" | "defaultValue" | "value" | "onCancel" | "onChange" | "active" | "placeholder" | "loadingConfig" | "loading" | "onSearch" | "defaultActive" | "onActiveChange"> & { clearable?: boolean | undefined; enhance?: boolean | undefined; mini?: boolean | undefined; searchImediately?: boolean | undefined; history?: SearchHistoryOptions | undefined; clearAndSubmit?: boolean | undefined; } & {} & { locale?: string | undefined; translate?: ((str: string, ...args: any[]) => string) | undefined; }>, nextState: Readonly<{}>, nextContext: any): void; }; displayName: string; contextType: React.Context; ComposedComponent: React.ComponentType; } & import("hoist-non-react-statics").NonReactStatics & { ComposedComponent: typeof SearchBox; }; }; export default _default;