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