import { z } from 'zod'; export declare const apiCallTool: { name: string; description: string; parameters: { endpoint: z.ZodString; method: z.ZodEnum<["GET", "POST", "PUT", "PATCH", "DELETE"]>; path: z.ZodOptional; queryParams: z.ZodOptional>; headers: z.ZodOptional>; body: z.ZodOptional; authType: z.ZodDefault>; authConfig: z.ZodOptional; username: z.ZodOptional; password: z.ZodOptional; clientId: z.ZodOptional; tenantId: z.ZodOptional; authority: z.ZodOptional; scopes: z.ZodOptional>; redirectUri: z.ZodOptional; useBroker: z.ZodDefault>; }, "strip", z.ZodTypeAny, { useBroker: boolean; token?: string | undefined; username?: string | undefined; clientId?: string | undefined; tenantId?: string | undefined; scopes?: string[] | undefined; password?: string | undefined; authority?: string | undefined; redirectUri?: string | undefined; }, { token?: string | undefined; username?: string | undefined; clientId?: string | undefined; tenantId?: string | undefined; scopes?: string[] | undefined; password?: string | undefined; authority?: string | undefined; redirectUri?: string | undefined; useBroker?: boolean | undefined; }>>; }; handler: ({ endpoint, method, path, queryParams, headers, body, authType, authConfig }: { endpoint: string; method: "GET" | "POST" | "PUT" | "PATCH" | "DELETE"; path?: string; queryParams?: Record; headers?: Record; body?: any; authType?: "bearer" | "basic" | "interactive" | "none"; authConfig?: { token?: string; username?: string; password?: string; clientId?: string; tenantId?: string; authority?: string; scopes?: string[] | undefined; redirectUri?: string; useBroker?: boolean; }; }) => Promise<{ content: { readonly type: "text"; readonly text: string; }[]; isError?: undefined; } | { content: { readonly type: "text"; readonly text: `Error making API call: ${any}`; }[]; isError: boolean; }>; };