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