import type yargs from "yargs"; import { type AuthMethod, type AuthResolvedArgv } from "./authOptions"; export declare const buildConnectionOptions: (args: yargs.Argv, config: { auth: readonly [AuthMethod, ...AuthMethod[]]; guestSpace?: boolean; }) => yargs.Argv & AuthResolvedArgv, "guest-space-id"> & yargs.InferredOptionTypes<{ "guest-space-id": { describe: string; default: string | undefined; defaultDescription: string; type: "string"; requiresArg: true; }; } | { "guest-space-id": { hidden: true; describe: string; default: string | undefined; defaultDescription: string; type: "string"; requiresArg: true; }; }>>;