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