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