import React from 'react'; import { ISelectProps } from '@blueprintjs/select'; import { SelectOption } from './Select'; declare type Props = ISelectProps; export interface SelectV2Props extends Omit { itemRenderer?: Props['itemRenderer']; onChange?: Props['onItemSelect']; value?: SelectOption; placeholder?: string; items: Props['items'] | (() => Promise); children?: React.ReactNode; allowCreatingNewItems?: boolean; } export declare function SelectV2(props: SelectV2Props): React.ReactElement; export {};