import type yargs from "yargs"; import type { SupportedImportEncoding } from "../../utils/file"; import type { CommandModule } from "yargs"; 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; }) & { "file-path": string; }) & { encoding: SupportedImportEncoding; }) & { "update-key": string | undefined; }) & { fields: string | undefined; }) & { "experimental-use-server-side-upsert": boolean; }>; type Args = yargs.Arguments extends yargs.Argv ? U : never>; export declare const importCommand: CommandModule<{}, Args>; export {};