/** * Lexical module loaders. * * All imports are static to ensure a single module instance is shared * across all code paths (avoiding Lexical error #195 - dual module instances). * * The async function signatures are preserved for backward compatibility. */ /** * Get the Lexical core module. * Returns the statically imported module to ensure a single instance * is shared across all code paths (avoiding Lexical error #195). */ export declare function loadLexicalCore(): Promise; export declare function loadRichText(): Promise; export declare function loadPlainText(): Promise; export declare function loadHistory(): Promise; export declare function loadList(): Promise; export declare function loadLink(): Promise; export declare function loadClipboard(): Promise; export declare function loadMarkdown(): Promise; export declare function loadHtml(): Promise; export declare function loadTable(): Promise; export declare function loadCode(): Promise; export declare function loadHashtag(): Promise; export declare function loadMark(): Promise; export declare function loadOverflow(): Promise; export declare function loadSelection(): Promise; export declare function loadText(): Promise; export declare function loadUtils(): Promise; export declare function loadOffset(): Promise; export declare function loadDragon(): Promise; export declare function loadFile(): Promise; export declare function loadYjs(): Promise; export declare function loadHeadless(): Promise;