import HorizontalRuleComponent from './node.svelte'; import type { Decorator } from '../../decorators.svelte'; import { DecoratorNode, type DOMConversionMap, type DOMExportOutput, type EditorConfig, type LexicalCommand, type LexicalNode, type NodeKey, type SerializedLexicalNode } from 'lexical'; export type SerializedHorizontalRuleNode = SerializedLexicalNode; export declare const INSERT_HORIZONTAL_RULE_COMMAND: LexicalCommand; export declare class HorizontalRuleNode extends DecoratorNode> { static getType(): string; static clone(node: HorizontalRuleNode): HorizontalRuleNode; static importJSON(serializedNode: SerializedHorizontalRuleNode): HorizontalRuleNode; static importDOM(): DOMConversionMap | null; exportDOM(): DOMExportOutput; createDOM(config: EditorConfig): HTMLElement; getTextContent(): string; isInline(): false; updateDOM(): boolean; decorate(): Decorator; } export declare function createHorizontalRuleNode$(): HorizontalRuleNode; export declare function isHorizontalRuleNode$(node: LexicalNode | null | undefined): node is HorizontalRuleNode; type $$ComponentProps = { nodeKey: NodeKey; }; declare const Node: import("svelte").Component<$$ComponentProps, {}, "">; type Node = ReturnType; export default Node;