import type { DynamicMapParams } from "../schemas/map/dynamicMapSchema"; /** * Handler factory function for Genesis dynamic map rendering * (Genesis raster tiles + skia-canvas) */ export declare function createDynamicMapHandler(): (params: DynamicMapParams) => Promise<{ content: ({ type: "text"; text: string; data?: undefined; mimeType?: undefined; } | { type: "image"; data: string; mimeType: string; text?: undefined; })[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>;