import Base, { MaybeRaw } from "../../../Base"; import { ICosmoStats } from "../../../interfaces/cosmo/stats"; /** * @class Space * @extends Base * * @remarks * **Under development, breaking changes possible** * * Represents a Stats resource in Cosmo, providing get methods to retrieve statistics with the Stats API. */ export declare class CosmoStats extends Base { protected getEndpoint(endpoint: string): string; /** * Fetch org related stats * @remarks * ** Under development, breaking changes possible** * @param orgName Name of the Organization * @returns The requested org stats */ getOrgStats(orgName: string, raw?: { raw: R; }): Promise>; /** * Fetch space related stats * @remarks * ** Under development, breaking changes possible** * @param orgName Name of the Organization * @param spaceName Name of the Space * @returns The requested space stats */ getSpaceStats(orgName: string, spaceName: string, raw?: { raw: R; }): Promise>; }