import Base from "../../Base"; import { DaliCosmoSpace } from "./avatar/DaliCosmoSpace"; import { DaliHigh5Pool } from "./avatar/DaliHigh5Pool"; import { DaliHigh5Space } from "./avatar/DaliHigh5Space"; import { DaliOAuthApp } from "./avatar/DaliOAuthApp"; import { DaliOrganization } from "./avatar/DaliOrganization"; import { DaliServiceAccount } from "./avatar/DaliServiceAccount"; import { DaliTeam } from "./avatar/DaliTeam"; import { DaliUser } from "./avatar/DaliUser"; export declare class DaliAvatar extends Base { /** * Handles everything around user avatars */ get user(): DaliUser; private _user?; /** * Handles everything around team avatars */ get team(): DaliTeam; private _team?; /** * Handles everything around service account avatars */ get serviceAccount(): DaliServiceAccount; private _serviceAccount?; /** * Handles everything around organization avatars */ get organization(): DaliOrganization; private _organization?; /** * Handles everything around high5 spaces avatars */ get high5Space(): DaliHigh5Space; private _high5Space?; /** * Handles everything around high5 pools avatars */ get high5Pool(): DaliHigh5Pool; private _high5Pool?; /** * Handles everything around cosmo spaces avatars */ get cosmoSpace(): DaliCosmoSpace; private _cosmoSpace?; /** * Handles everything around OAuth applications avatars */ get oauth(): DaliOAuthApp; private _oauth?; protected getEndpoint(endpoint: string): string; }