export declare function isConsoleOnlyVerb(verb: string): boolean; export interface ConsoleVerbDeps { print: (line: string) => void; /** The bound project id, or undefined for an unlinked folder. */ projectId: () => Promise; consoleUrl?: string; } /** * The deep link goes to the exact tab, built from the binding the CLI already * holds — a creator who typed `vincentt rollback` wants to be one click from * rolling back. * * If the folder is NOT linked the last two lines are dropped and the block ends * at the reason: the CLI does not know which project they meant, and guessing a * console URL would be worse than none. */ export declare function consoleVerbCommand(deps: ConsoleVerbDeps, verb: string): Promise;