import type { DataVizOrbisParams } from "../schemas/dataViz/dataVizOrbisSchema"; export declare function createDataVizHandler(): (params: DataVizOrbisParams) => Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>;