import { BuildChartContext, createChartSchema } from '../types'; import { default as z } from 'zod/v4'; export declare const createChart: ({ queryPrompt, chartPrompt, chartType, chartTitle, queryId, }: z.infer, context: BuildChartContext) => Promise<{ message: string; chartState: import('../../..').ChartState; dataset: import('../../..').Dataset | undefined; }>;