import { Command } from "commander";
import { z } from "zod";
declare const McpCommandOptions: z.ZodObject<{
    apiUrl: z.ZodOptional<z.ZodString>;
    logLevel: z.ZodDefault<z.ZodEnum<["debug", "info", "log", "warn", "error", "none"]>>;
    skipTelemetry: z.ZodDefault<z.ZodBoolean>;
    profile: z.ZodDefault<z.ZodString>;
} & {
    projectRef: z.ZodOptional<z.ZodString>;
    logFile: z.ZodOptional<z.ZodString>;
    devOnly: z.ZodDefault<z.ZodBoolean>;
    readonly: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    readonly: boolean;
    logLevel: "error" | "log" | "debug" | "info" | "warn" | "none";
    skipTelemetry: boolean;
    profile: string;
    devOnly: boolean;
    apiUrl?: string | undefined;
    projectRef?: string | undefined;
    logFile?: string | undefined;
}, {
    readonly?: boolean | undefined;
    logLevel?: "error" | "log" | "debug" | "info" | "warn" | "none" | undefined;
    apiUrl?: string | undefined;
    projectRef?: string | undefined;
    skipTelemetry?: boolean | undefined;
    profile?: string | undefined;
    devOnly?: boolean | undefined;
    logFile?: string | undefined;
}>;
export type McpCommandOptions = z.infer<typeof McpCommandOptions>;
export declare function configureMcpCommand(program: Command): Command;
export declare function mcpCommand(options: McpCommandOptions): Promise<void>;
export {};
