import { Base } from './base'; import { Licence as LicenceModel } from './models/licence'; import { MembershipAdminLicence } from './types/licence'; export declare class Licence extends Base { private membershipApi; private licenceApiKey; getUserAdminLicences(userId: string): Promise>; allocateSeat(licenceId: string, userId: string, accessDuration: string): Promise; mapLicenceResponse(licenceData: any): LicenceModel; }