/** * Generic text field codec: normalize user-authored text for storage and render for presentation. * Domain catalogs (skills, snippets, etc.) compose these helpers; Catalox does not assign roles. */ /** Normalize presentation/markdown text before persisting to catalog item `data`. */ export declare function normalizeTextForStorage(input: string): string; /** Render stored text for UI / agent presentation (identity by default). */ export declare function toPresentationText(storage: string): string; /** @deprecated Alias — prefer {@link normalizeTextForStorage}. */ export declare const normalizeForStorage: typeof normalizeTextForStorage; /** @deprecated Alias — prefer {@link toPresentationText}. */ export declare const toPresentationMarkdown: typeof toPresentationText; //# sourceMappingURL=field-codec.d.ts.map