import type { MapParams } from "../schemas/map/mapSchema"; export declare function createStaticMapHandler(): (params: MapParams) => Promise<{ content: { type: "image"; data: string; mimeType: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>;