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