import type yargs from "yargs"; import type { CommandModule } from "yargs"; import type { ExportFileEncoding } from "../../record/export"; 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; }) & { "attachments-dir": string | undefined; }) & { encoding: ExportFileEncoding; }) & { condition: string | undefined; }) & { "order-by": string | undefined; }) & { fields: string | undefined; }>; type Args = yargs.Arguments extends yargs.Argv ? U : never>; export declare const exportCommand: CommandModule<{}, Args>; export {};