import Base from "../../../../Base"; import { Stats } from "../../../../interfaces/high5/stats"; export declare class High5SpaceStat extends Base { /** * Retrieves usage statistics for a specific space. * @param orgName Name of the organization * @param spaceName Name of the space * @returns Statistics information */ getStats(orgName: string, spaceName: string): Promise; protected getEndpoint(endpoint: string): string; }