import type { SerializedParagraphNode } from '@payloadcms/richtext-lexical/lexical'; type SerializedICUEditorState = { root: { type: 'root'; version: 1; direction: null; format: ''; indent: 0; children: [SerializedParagraphNode]; }; }; /** * Parse an ICU message string into a Lexical serialized editor state */ export declare const parseIcuToLexicalState: (icuMessage: string) => SerializedICUEditorState; export {}; //# sourceMappingURL=lexical.d.ts.map