import { SvelteComponentTyped } from "svelte"; import type { IconProps } from '../types.js'; declare const __propDef: { props: IconProps; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; 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 {};