import React from 'react'; import { Props } from './types'; export declare const Select: { new (props: import("../InputSelect/types").Props | Props): { popUpItemRef: import("../InputSelect/types").Ref | null | undefined; componentDidUpdate(prevProps: import("../InputSelect/types").Props): void; render(): JSX.Element; context: any; setState(state: { popUpMaxHeight: number; } | ((prevState: Readonly<{ popUpMaxHeight: number; }>, props: Readonly) => { popUpMaxHeight: number; } | Pick<{ popUpMaxHeight: number; }, K> | null) | Pick<{ popUpMaxHeight: number; }, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly & Readonly<{ children?: React.ReactNode; }>; state: Readonly<{ popUpMaxHeight: number; }>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, nextState: Readonly<{ popUpMaxHeight: number; }>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, prevState: Readonly<{ popUpMaxHeight: number; }>): any; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, nextState: Readonly<{ popUpMaxHeight: number; }>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, nextState: Readonly<{ popUpMaxHeight: number; }>, nextContext: any): void; }; contextType?: React.Context | undefined; };