/** * @module tui/zen/zen-panes-x * * Dispatcher for the EXTENDED pane types — one registry, one entry point. * zen-surface calls renderExtendedPane for any type in EXTENDED_PANE_TYPES; * the renderers live in zen-panes-charts (graphs) and zen-panes-live * (time / learning / play / communication). */ import type { PaneCtx, PaneOut } from "./zen-panes-ctx.js"; export declare const EXTENDED_PANE_TYPES: Set; export declare function renderExtendedPane(c: PaneCtx): PaneOut;