import * as React from 'react'; import { FC } from 'react'; import { IEditableTextProps, Text } from '@blueprintjs/core'; import { InputComponentProps } from '@balgamat/react-autoform'; export declare const TYPES: { Blockquote: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; Code: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; H1: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; H2: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; H3: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; H4: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; H5: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; H6: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; Label: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; Pre: React.FunctionComponent & import("@blueprintjs/core").IElementRefProps>; Text: typeof Text; }; export declare type EditableProps = InputComponentProps & Partial & { textType?: keyof typeof TYPES; }; export declare const Editable: FC;