/** @typedef {typeof __propDef.props} AstNodeProps */ /** @typedef {typeof __propDef.events} AstNodeEvents */ /** @typedef {typeof __propDef.slots} AstNodeSlots */ export default class AstNode extends SvelteComponentTyped<{ value: import("svelte/types/compiler/interfaces").Ast; key?: string | undefined; collapsed?: boolean | undefined; path_nodes?: import("svelte/types/compiler/interfaces").Ast[] | undefined; autoscroll?: boolean | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type AstNodeProps = typeof __propDef.props; export type AstNodeEvents = typeof __propDef.events; export type AstNodeSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { value: import('svelte/types/compiler/interfaces').Ast; key?: string | undefined; collapsed?: boolean | undefined; path_nodes?: import("svelte/types/compiler/interfaces").Ast[] | undefined; autoscroll?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};