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