export type CommandResult = { success: boolean; message?: string; error?: Error; }; export declare function resolveCliCommand(command: string): string; export declare function runCommand(command: string, args: string[], options: { cwd: string; silent?: boolean; }): Promise; export declare function runCommandInteractive(command: string, args: string[], options: { cwd: string; }): Promise;