import type { InlineElement } from 'roosterjs-editor-types'; /** * @internal * Get the first inline element inside the given node */ export declare function getFirstInlineElement(rootNode: Node): InlineElement | null; /** * @internal * Get the last inline element inside the given node */ export declare function getLastInlineElement(rootNode: Node): InlineElement | null;