import type { App } from '../App'; import type { Node } from '../Node'; type DashboardFactory = (props: Record, app: App) => Node; declare const registry: Record; export declare function registerDashboard(type: string, factory: DashboardFactory): void; export declare function createDashboardFromJSON(type: string, props: Record, app: App): Node | null; export { registry };