import type { ConfigPanelId, ConfigPanelMeta } from '../../../types/config'; /** The panels rendered in the sidebar, in display order. Adding a tool here + * a route in `server.ts` + a branch in `ConfigShell` is all it takes to grow * the unified config tool. */ export declare const CONFIG_PANELS: ConfigPanelMeta[]; export declare const DEFAULT_PANEL: ConfigPanelId; export declare const isConfigPanelId: (value: unknown) => value is ConfigPanelId;