export declare function domainsCommand(action: string | undefined, rawArgs: string[]): Promise; /** * The domain `domains add` was asked to register. * * Exported so its tests drive the real parser. Under the old operand filter * `rebase cloud domains add -p acme` registered a domain called "acme" — the * project slug, read out of `--project`'s own value — and a registered domain * is a project-record write, not a no-op. */ export declare function resolveDomainArg(rawArgs: string[]): string | undefined; export declare function printDomainsHelp(): void;