import { z } from 'zod';
export declare const basemap: import("@openassistant/utils").ExtendedTool<z.ZodObject<{
    styleType: z.ZodEnum<["no_map", "dark-matter", "positron", "voyager", "satellite", "dark", "light", "muted", "muted_night"]>;
}, "strip", z.ZodTypeAny, {
    styleType: "muted" | "no_map" | "dark-matter" | "positron" | "voyager" | "satellite" | "dark" | "light" | "muted_night";
}, {
    styleType: "muted" | "no_map" | "dark-matter" | "positron" | "voyager" | "satellite" | "dark" | "light" | "muted_night";
}>, {
    success: boolean;
    styleType: string;
    details?: string;
    instruction?: string;
}, {
    styleType: string;
}, never>;
export type BasemapTool = typeof basemap;
export declare function BasemapToolComponent({ styleType }: {
    styleType: any;
}): null;
