import React from 'react'; import { IBlockType } from '../../../store/storetype'; import { CreateOptionsRes } from '../../formTypes'; export interface MultiTextProps { data: CreateOptionsRes<'multiText'>; current?: IBlockType; value?: string; onChange?: (v: string) => void; } declare const _default: React.MemoExoticComponent<(props: MultiTextProps) => JSX.Element>; export default _default;