import * as React from 'react';
import type { PeritextSurfaceState } from '../../web';
import type { ToolbarPluginOpts } from './ToolbarPlugin';
export interface RenderPeritextProps {
    surface: PeritextSurfaceState;
    children: React.ReactNode;
    opts: ToolbarPluginOpts;
}
export declare const RenderPeritext: React.FC<RenderPeritextProps>;
