import type { IObjectAny } from '@schema-render/core-react';
import type { FC } from 'react';
interface ILongTextModalProps {
    value?: string;
    options?: IObjectAny;
}
declare const LongTextModal: FC<ILongTextModalProps>;
export default LongTextModal;
