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