/** @typedef {typeof __propDef.props} AstViewProps */ /** @typedef {typeof __propDef.events} AstViewEvents */ /** @typedef {typeof __propDef.slots} AstViewSlots */ export default class AstView extends SvelteComponentTyped<{ ast: import("svelte/types/compiler/interfaces").Ast; autoscroll?: boolean | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type AstViewProps = typeof __propDef.props; export type AstViewEvents = typeof __propDef.events; export type AstViewSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { ast: import('svelte/types/compiler/interfaces').Ast; autoscroll?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};