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