import { BuildChartContext } from '../types'; export type RebindChartToQueryParams = { priorChartId: string; queryId: string; }; export declare const rebindChartToQuery: ({ priorChartId, queryId }: RebindChartToQueryParams, context: BuildChartContext) => Promise<{ message: string; chartState: import('../../..').ChartState | undefined; dataset: import('../../..').Dataset | undefined; }>;