export declare function orgInvite(host: string, json: boolean): Promise<0 | 1>; export interface OrgUsers { readonly OrgName: string; readonly UserNames: string[]; } export declare function orgListUsers(host: string, json: boolean): Promise<0 | 1>; export declare function renameOrganization(host: string, oldname: string, newname: string): Promise<0 | 1>; export declare function joinOrganization(host: string, orgname: string, secret: string): Promise<0 | 1>; export declare function removeUserFromOrg(host: string, usernameToDelete: string): Promise<0 | 1>; //# sourceMappingURL=organization.d.ts.map