export declare function teamCreate(slug: string, options: { name?: string; description?: string; }): Promise; export declare function teamList(): Promise; export declare function teamShow(slugOrId: string): Promise; export declare function teamAdd(slugOrId: string, agentIdOrAlias: string): Promise; export declare function teamInvite(slugOrId: string): Promise; export declare function teamRemove(slugOrId: string, agentIdOrAlias: string): Promise; export declare function teamLeave(slugOrId: string): Promise; export declare function teamDelete(slugOrId: string): Promise; export declare function teamAcceptInvite(token: string): Promise; export declare function teamAlias(slug: string, alias: string): Promise; export declare function teamUnalias(slug: string): Promise; export declare function teamSync(): Promise;