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