import type { Command } from "commander"; type Options = { email?: string; codeStdin?: boolean; json?: boolean; }; export declare function registerWorkspaceListCommand(workspace: Command): void; export declare function loginWorkspace(options: Options & { membershipId: string; }): Promise; export {};