import { SvelteComponentTyped } from "svelte"; import type { Paragraph, Heading, List, Blockquote, Code, Block, ListItem, ThematicBreak } from 'datocms-structured-text-utils'; declare const __propDef: { props: { node?: Paragraph | Heading | List | Code | Blockquote | Block | ThematicBreak | ListItem; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type NodeProps = typeof __propDef.props; export declare type NodeEvents = typeof __propDef.events; export declare type NodeSlots = typeof __propDef.slots; export default class Node extends SvelteComponentTyped { } export {};