export declare class WeverseUrl {
    static base: string;
    private static _login;
    private static _checkToken;
    private static _communities;
    private static _allNotifications;
    static get checkToken(): string;
    static get communities(): string;
    static get login(): string;
    static get allNotifications(): string;
    static notifications(from?: number): string;
    static community(id: number): string;
    static communityPosts(id: number): string;
    static communityPostsPages(id: number, from?: number): string;
    static postDetails(postId: number, communityId: number): string;
    static postComments(postId: number, communityId: number): string;
    static media(communityId: number, mediaId: number): string;
}
