import { CommunityConfig } from '../utils/definitions'; type EndPoints = { sharedInbox: string; }; type CommunityUserIri = { domainName: string; endpoints: EndPoints[]; favorite: boolean; name: string; nickName: string; onlineLocation: string; onlineLocationUrl: string; onlineStatus: string; preferredUsername: string; userIri: string; }; export type CommunityUserListResponse = { data: CommunityUserIri[]; }; export declare function postCommunityDisplayName({ communityBaseURL, timeout, communityConfig, }: { communityBaseURL: string; timeout?: number; communityConfig: CommunityConfig; }): Promise; export {};