import { PureComponent } from 'react'; export default class SelectOrganization extends PureComponent { state: { options: never[]; value: string; }; componentDidMount(): void; componentWillReceiveProps(nextProps: any): void; onChange: (value: string) => void; onSearch: (value: string) => void; getOptions: (value?: string) => Promise; setter: (data: Array) => void; getter: (value?: string) => Promise; renderTreeNodes: (options: any) => any; render(): JSX.Element; }