import type { Argv } from 'yargs'; export declare const command: string; export declare const desc: string; export declare function builder(yargs: Argv): Argv & import("yargs").InferredOptionTypes<{ dbConnectionURI: { describe: string; type: "string"; }; interactive: { describe: string; type: "boolean"; }; output: { describe: string; type: "string"; default: string; }; }>>; declare type HandlerArguments = { dbConnectionURI: string; interactive: boolean; output: string; }; export declare function handler(argv: HandlerArguments): Promise; export {};