import type { ILicense } from "@webiny/wcp/types"; import { LoggerService } from "../../abstractions/index.js"; import { IGetProjectLicenseParams } from "../../abstractions/services/WcpService.js"; export interface IGetProjectLicenseDi { loggerService: LoggerService.Interface; } export declare class GetProjectLicense { di: IGetProjectLicenseDi; constructor(di: IGetProjectLicenseDi); execute(params: IGetProjectLicenseParams): Promise; }