/** @typedef {typeof __propDef.props} BiEscapeProps */ /** @typedef {typeof __propDef.events} BiEscapeEvents */ /** @typedef {typeof __propDef.slots} BiEscapeSlots */ export default class BiEscape extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiEscapeProps = typeof __propDef.props; export type BiEscapeEvents = typeof __propDef.events; export type BiEscapeSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};