export declare const BINDING_METADATA_READER_SOURCE = "\n const __readBindingMetadata = (__value) => {\n if (__value === null || (typeof __value !== \"object\" && typeof __value !== \"function\")) return {};\n const __metadata = {};\n for (const [__key, __max, __multiline, __lines] of [\n [\"description\", 256, false, 1],\n [\"usage\", 512, true, 4],\n ]) {\n const __descriptor = Object.getOwnPropertyDescriptor(__value, __key);\n if (!__descriptor || !(\"value\" in __descriptor) || typeof __descriptor.value !== \"string\") continue;\n const __text = __descriptor.value;\n if (!__text || new TextEncoder().encode(__text).byteLength > __max || __text.includes(\"\\r\")) continue;\n const __textLines = __text.split(\"\\n\");\n if (__textLines.length > __lines) continue;\n let __valid = true;\n for (const __character of __text) {\n const __codePoint = __character.codePointAt(0);\n if ((__codePoint < 0x20 && __codePoint !== 0x0a) || __codePoint === 0x7f || !__multiline && __codePoint === 0x0a) {\n __valid = false;\n break;\n }\n }\n if (__valid) __metadata[__key] = __text;\n }\n return __metadata;\n };\n"; export declare const BINDING_METADATA_RESTORE_SOURCE = "\n\tconst __applyMetadata = (__value, __entry) => {\n\t if (__value === null || (typeof __value !== \"object\" && typeof __value !== \"function\")) return;\n\t for (const __key of [\"description\", \"usage\"]) {\n\t if (typeof __entry[__key] !== \"string\") continue;\n\t try {\n\t Object.defineProperty(__value, __key, {\n\t value: __entry[__key],\n\t writable: true,\n\t configurable: true,\n\t enumerable: true,\n\t });\n\t } catch {}\n\t }\n\t};\n";