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