import * as React from 'react'; import { IOption } from './Select.types'; interface IProps { value: string | number; onChange: (value: IOption) => void; options: () => Promise; } interface IState { isLoading: boolean; options: IOption[]; } export declare class SelectLookup extends React.Component { state: { isLoading: boolean; options: never[]; }; componentDidMount(): void; onChange: (value: string) => void; render(): JSX.Element; } export {};