export interface DecorationNodeResult { node: Node; index: number; length: number; } export declare const DECORATION_ATTRIBUTE_NAME = "data-editor-decoration"; export declare function isDecorationNode(node: Node): boolean; export declare function getDecorationNodes(container: Node): Iterable;