import { Block } from '@zettel/core'; import { RenderProps } from './types'; declare type TextProps = RenderProps & { block: Block; }; export default function EditorText(props: TextProps): JSX.Element; export {};