/** * Status value to label converter. * * Converts numeric status codes from the ProtoPedia API to Japanese labels. * * @module utils/converters/status */ import type { StatusCode } from '../../types/codes.js'; /** * Convert status code to label. * * @param status - Status code from NormalizedPrototype.status * @returns Japanese label or the numeric value as string if unknown * * @example * ```typescript * getPrototypeStatusLabel(1); // => 'アイデア' * getPrototypeStatusLabel(3); // => '完成' * getPrototypeStatusLabel(99); // => '99' * ``` */ export declare const getPrototypeStatusLabel: (status: StatusCode) => string; //# sourceMappingURL=status.d.ts.map