import Base, { MaybeRaw } from "../../../Base"; import { AvatarCreated } from "../../../interfaces/dali"; import { Team } from "../../../interfaces/idp/organization/team"; export declare class DaliTeam extends Base { /** * Creates a default avatar for the specified team. * @param orgName Name of the organization * @param teamName Name of the team * @returns Public URL of the created avatar */ createAvatar(orgName: string, teamName: string, raw?: { raw: R; }): Promise>; /** * Deletes the avatar of the team from cloud storage. If you want to update it instead, use updateAvatar(). * @param orgName Name of the organization * @param teamName Name of the team */ deleteAvatar(orgName: string, teamName: string, raw?: { raw: R; }): Promise>; /** * Updates the avatar of the specified team. * @param orgName Name of the organization * @param teamName Name of the team * @param file Image as Javascript File * @returns Public URL of the new avatar */ updateAvatar(orgName: string, teamName: string, file: File, raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }