import type yargs from "yargs"; import type { CommandModule } from "yargs"; import type { SupportedImportEncoding } from "../../utils/file"; declare const builder: (args: yargs.Argv) => yargs.Argv<((((yargs.Omit & import("../authOptions").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; }; }>) & { app: string; }) & { yes: boolean | undefined; }) & { "file-path": string | undefined; }) & { encoding: SupportedImportEncoding; }>; type Args = yargs.Arguments extends yargs.Argv ? U : never>; export declare const deleteCommand: CommandModule<{}, Args>; export {};