/** * License type value to label converter. * * Converts numeric license type codes from the ProtoPedia API to Japanese labels. * * @module utils/converters/license-type */ import type { LicenseTypeCode } from '../../types/codes.js'; /** * Convert license type code to label. * * @param licenseType - License type from NormalizedPrototype.licenseType * @returns Japanese label or the numeric value as string if unknown * * @example * ```typescript * getPrototypeLicenseTypeLabel(0); // => 'なし' * getPrototypeLicenseTypeLabel(1); // => '表示(CC:BY)' * getPrototypeLicenseTypeLabel(99); // => '99' * ``` */ export declare const getPrototypeLicenseTypeLabel: (licenseType: LicenseTypeCode) => string; //# sourceMappingURL=license-type.d.ts.map