import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type StackProps = typeof __propDef.props; export type StackEvents = typeof __propDef.events; export type StackSlots = typeof __propDef.slots; export default class Stack extends SvelteComponentTyped { } export {};