import { ChartSummary, BuildChartContext, buildChartSchema, ChartContextPromptEntry } from './types'; import { default as z } from 'zod'; /** * Build contextual system prompt for build chart */ export declare function buildContextualSystemPrompt(chartsForContext: ChartContextPromptEntry[], priorChartId?: string, outerQueryId?: string): string; /** * Standalone build chart engine - completely decoupled from any UI or store * @param params - The parameters for the build chart * @param context - All external dependencies injected * @returns The chart summary */ export declare function buildChartEngine(params: z.infer, context: BuildChartContext): Promise; //# sourceMappingURL=build-chart-engine.d.ts.map