import { IButtonProps, IFormGroupProps } from '@blueprintjs/core'; import { FC } from 'react'; import { InputComponentProps } from '@balgamat/react-autoform'; import { ISelectProps } from '@blueprintjs/select'; import { IOptions } from './util/types'; export declare type SelectProps = InputComponentProps & Partial> & Partial & Partial & { loading?: boolean; buttonProps?: Partial; }; export declare const Select: FC;