import { Command } from "commander"; import { z } from "zod"; declare const SwitchProfilesOptions: z.ZodObject; logLevel: z.ZodDefault>; skipTelemetry: z.ZodDefault; profile: z.ZodDefault; }, "logLevel" | "skipTelemetry">, "strip", z.ZodTypeAny, { logLevel: "error" | "log" | "debug" | "info" | "warn" | "none"; skipTelemetry: boolean; }, { logLevel?: "error" | "log" | "debug" | "info" | "warn" | "none" | undefined; skipTelemetry?: boolean | undefined; }>; type SwitchProfilesOptions = z.infer; export declare function configureSwitchProfilesCommand(program: Command): Command; export declare function switchProfilesCommand(profile: string | undefined, options: unknown): Promise; export declare function switchProfiles(profile: string | undefined, options: SwitchProfilesOptions): Promise; export {};