import * as React from 'react'; import type { ValueSyncStore } from '../../../util/events/sync-store'; import type { PeritextSurfaceState } from '../../web'; import type { DebugState } from './state'; export interface DebugRenderersContextValue { state: DebugState; flags: { dom: ValueSyncStore; editor: ValueSyncStore; peritext: ValueSyncStore; model: ValueSyncStore; }; ctx: PeritextSurfaceState; } export declare const context: React.Context; export declare const useDebugCtx: () => DebugRenderersContextValue;