import { Command } from 'commander'; import type * as variables from '../variables'; import type { CliOptions } from '../types'; export declare const WORKSPACE_DIR = "pnpm-workspace.yaml"; export declare const handleOptions: (program: Command, options?: T) => CliOptions; export type CommandOptions = Omit, 'name' | 'version'> & { name: string; version: string; }; export declare const init: (options: CommandOptions, program?: Command) => { next: (func: any) => /*elided*/ any; end: () => Command; };