import { type Command } from "commander";
export declare function withConfigOptions(program: Command): Command;
export type WithConfigOptions<CustomOptions = {}> = {
    config?: string;
    dbUrl?: string;
} & CustomOptions;
