/** @typedef {typeof __propDef.props} RawBlockProps */ /** @typedef {typeof __propDef.events} RawBlockEvents */ /** @typedef {typeof __propDef.slots} RawBlockSlots */ export default class RawBlock extends SvelteComponentTyped<{ data: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } export type RawBlockProps = typeof __propDef.props; export type RawBlockEvents = typeof __propDef.events; export type RawBlockSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { data: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};