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