import { z } from "zod"; import type { StructuredToolResult } from "../structured.js"; export declare const estadosSchema: z.ZodObject<{ regiao: z.ZodOptional>; ordenar: z.ZodDefault>>; }, "strip", z.ZodTypeAny, { ordenar: "sigla" | "nome" | "id"; regiao?: "SE" | "N" | "NE" | "S" | "CO" | undefined; }, { regiao?: "SE" | "N" | "NE" | "S" | "CO" | undefined; ordenar?: "sigla" | "nome" | "id" | undefined; }>; export type EstadosInput = z.infer; /** Structured output payload (validated against this schema by the MCP SDK). */ export declare const estadosOutputSchema: z.ZodObject<{ estados: z.ZodArray, "many">; total: z.ZodNumber; }, "strip", z.ZodTypeAny, { estados: { sigla: string; nome: string; regiao: string; id: number; }[]; total: number; }, { estados: { sigla: string; nome: string; regiao: string; id: number; }[]; total: number; }>; /** * Fetches all Brazilian states from IBGE API */ export declare function ibgeEstados(input: EstadosInput): Promise; //# sourceMappingURL=estados.d.ts.map