/// <reference types="yargs" />
declare const _default: {
    command: string;
    handler: (options: import("./command.js").FunctionOptions) => Promise<void>;
    description: string;
    builder: (yargs: import("yargs").Argv<import("./command.js").BaseOptions>) => import("yargs").Argv<import("./command.js").BaseOptions & {
        force: boolean;
    } & {
        name: string;
    }>;
};
export default _default;
