import { type InstallCommandOptions } from './install.js'; export declare const shorthands: Record; export declare function rcOptionsTypes(): Record; export declare function cliOptionsTypes(): Record; export declare const commandNames: string[]; export declare function help(): string; export type AddCommandOptions = InstallCommandOptions & { allowBuild?: string[]; allowNew?: boolean; ignoreWorkspaceRootCheck?: boolean; save?: boolean; update?: boolean; useBetaCli?: boolean; workspaceRoot?: boolean; config?: boolean; }; export declare function handler(opts: AddCommandOptions, params: string[]): Promise;