import { type Opts } from './base.js';
/**
 * Return a list of Yargs command builder to be exposed through CLI
 * @param opts it is an Options object containing logger
 * @returns an array of Yargs command builder
 */
export declare function Initialize(opts: Opts): {
    command: string;
    desc: string;
    builder: import("../types/aliases.js").CommandBuilder;
}[];
