export declare const dashboardToolDefinitions: ({ name: string; description: string; inputSchema: { type: "object"; properties: { workspaceId: { type: string; description: string; }; title?: undefined; content?: undefined; data?: undefined; canvasId?: undefined; canvasUrl?: undefined; }; required: never[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { title: { type: string; description: string; }; content: { type: string; description: string; }; workspaceId?: undefined; data?: undefined; canvasId?: undefined; canvasUrl?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { data: { type: string; description: string; }; canvasId: { type: string; description: string; }; canvasUrl: { type: string; description: string; }; workspaceId?: undefined; title?: undefined; content?: undefined; }; required: string[]; }; })[]; export declare function adminDashboardStats(workspaceId?: string): Promise; export declare function adminDashboardCanvasSync(args: { title: string; content: string; }): Promise; export declare function adminDashboardSnapshot(args: { data: object; canvasId?: string; canvasUrl?: string; }): Promise;