import { z } from 'zod'; import { getDashboardsSchema, GetDashboardsContext, DashboardsResult } from './types'; /** * Standalone dashboards engine - completely decoupled from any UI or store * @param params - The parameters for getting dashboards (currently empty) * @param context - Context with tool call ID for tracking * @returns The dashboards result with list of dashboards */ export declare function getDashboardsEngine(params: z.infer, context: GetDashboardsContext): Promise; //# sourceMappingURL=get-dashboards-engine.d.ts.map