import { FC } from 'react'; import { IFormGroupProps, IInputGroupProps } from '@blueprintjs/core'; import { InputComponentProps } from '@balgamat/react-autoform'; export declare type TextProps = InputComponentProps & Partial & Partial & { inputType?: IInputGroupProps['type']; }; export declare const Text: FC;