import type { Builder, Handler } from '@onerepo/yargs'; export declare const command = "install"; export declare const description = "Install the oneRepo CLI into your environment."; interface Args { force: boolean; location?: string; version: string; } export declare const builder: Builder; export declare const handler: Handler; export {};