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