import Base from "../../../../Base"; import { Stats } from "../../../../interfaces/idp/organization/stats"; export declare class IdpOrganizationStat 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; }