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