import { AxiosInstance } from 'axios'; import { GraphUserAssignedLicense, SubscribedSku } from './licenses.types'; export declare class Licenses { private readonly http; constructor(http: AxiosInstance); getUserLicenses(): Promise; getSubscribedSkus(): Promise; }