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