import { z } from 'zod/v4'; import { BuildChartContext, ExtendedChartWidgetProps, updateChartSchema } from '../types'; type UpdateChartStyleOptionsHelperParams = { userPrompt: string; chartWidgetProps: ExtendedChartWidgetProps; }; /** * Updates chart style options based on the user's prompt. * @param userPrompt - The user's prompt to update the chart style options. * @param chartWidgetProps - The chart widget props to update the chart style options for. * @returns The updated chart. */ export declare const updateChartStyleOptionsHelper: ({ userPrompt, chartWidgetProps, }: UpdateChartStyleOptionsHelperParams) => Promise; export declare const updateChartStyleOptions: ({ chartId, userPrompt }: z.infer, context: BuildChartContext) => Promise<{ message: string; }>; export {};