import type { DecryptedWcpProjectLicense } from "./types.js"; interface GetWcpProjectLicenseParams { orgId: string; projectId: string; projectEnvironmentApiKey: string; } export declare const getWcpProjectLicense: (params: GetWcpProjectLicenseParams) => Promise; export {};