/** * Release flag value to label converter. * * Converts numeric release flag codes from the ProtoPedia API to Japanese labels. * * **Note**: API typically only returns prototypes with `releaseFlg: 2` (publicly released). * * @module utils/converters/release-flag */ import type { ReleaseFlagCode } from '../../types/codes.js'; /** * Convert release flag code to label. * * @param releaseFlag - Release flag from NormalizedPrototype.releaseFlg * @returns Japanese label or the numeric value as string if unknown * * @example * ```typescript * getPrototypeReleaseFlagLabel(2); // => '一般公開' * getPrototypeReleaseFlagLabel(0); // => '0' * ``` */ export declare const getPrototypeReleaseFlagLabel: (releaseFlag: ReleaseFlagCode) => string; //# sourceMappingURL=release-flag.d.ts.map