import type { LicenseInfo, Cloud } from '@rocket.chat/core-typings'; type licensesAddProps = { license: string; }; export declare const isLicensesAddProps: import("ajv").ValidateFunction; type licensesInfoProps = { loadValues?: boolean; }; export declare const isLicensesInfoProps: import("ajv").ValidateFunction; export type LicensesEndpoints = { '/v1/licenses.info': { GET: (params: licensesInfoProps) => { license: LicenseInfo; cloudSyncAnnouncement?: Cloud.ICloudSyncAnnouncement; }; }; '/v1/licenses.add': { POST: (params: licensesAddProps) => void; }; '/v1/licenses.maxActiveUsers': { GET: () => { maxActiveUsers: number | null; activeUsers: number; }; }; '/v1/licenses.requestSeatsLink': { GET: () => { url: string; }; }; }; export {}; //# sourceMappingURL=licenses.d.ts.map