import { SelectViewCommonProps } from './interface'; interface SelectInputInnerContext { inputValue: SelectViewCommonProps['inputValue']; isEmptyValue: SelectViewCommonProps['isEmptyValue']; onRemoveCheckedItem: SelectViewCommonProps['onRemoveCheckedItem']; placeholder: SelectViewCommonProps['placeholder']; readOnly: SelectViewCommonProps['readOnly']; disabled: SelectViewCommonProps['disabled']; maxTagCount: SelectViewCommonProps['maxTagCount']; renderTag: SelectViewCommonProps['renderTag']; searchStatus: number; mergedFocused: boolean; canFocusInput: boolean; inputEventHandlers: { onPaste: (e: any) => void; onKeyDown: (event: any) => void; onFocus: (event: any) => void; onBlur: (event: any) => void; onChange: (newValue: any, event: any) => void; }; refInput: React.RefObject; showSearch: boolean; focused: boolean; renderText: SelectViewCommonProps['renderText']; value: SelectViewCommonProps['value']; popupVisible: SelectViewCommonProps['popupVisible']; } export declare const SelectInputInnerContext: import('react').Context; export declare const useSelectInnerContext: () => SelectInputInnerContext; export {};