import type { ListableOption } from '@lerna-lite/core'; export type YargListableOption = { [option in keyof ListableOption]: { group: string; describe: string; type: string; alias?: string; }; }; export declare function listableOptions(yargs: { options: (opts: YargListableOption) => void; }, group?: string): void;