import { NewDomain, Domain, DomainMembers } from '@argoncs/types'; export declare function createDomain(newDomain: NewDomain): Promise<{ domainId: string; }>; export declare function updateDomain(domainId: string, domain: Partial): Promise<{ modified: boolean; }>; export declare function addOrUpdateDomainMember(domainId: string, userId: string, scopes: string[]): Promise<{ modified: boolean; }>; export declare function removeDomainMember(domainId: string, userId: string): Promise<{ modified: boolean; }>; export declare function fetchDomain(domainId: string): Promise; export declare function fetchDomainMembers(domainId: string): Promise; //# sourceMappingURL=domain.services.d.ts.map