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