/** * Generate a translation key from a description string * Converts "End depth of penetration test" → "endDepthOfPenetrationTest" */ export declare function descriptionToKey(description: string): string; /** * Get translation key for a MEASUREMENTVAR ID * Uses the English description from metadata to generate a camelCase key */ export declare function getMeasurementVarKey(id: number, metadata: Record): string | null; /** * Get translation key for a MEASUREMENTTEXT ID * Uses the English description from metadata to generate a camelCase key */ export declare function getMeasurementTextKey(id: number, metadata: Record): string | null; //# sourceMappingURL=gef-measurement-mappings.d.ts.map