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