/** @typedef {typeof __propDef.props} StepsProps */ /** @typedef {typeof __propDef.events} StepsEvents */ /** @typedef {typeof __propDef.slots} StepsSlots */ export default class Steps extends SvelteComponentTyped<{ attached: any; wide: any; side: any; class?: string; inverted?: boolean; style?: {}; size?: string; ordered?: boolean; vertical?: boolean; unstackable?: boolean; stackable?: boolean; fluid?: boolean; tablet?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type StepsProps = typeof __propDef.props; export type StepsEvents = typeof __propDef.events; export type StepsSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attached: any; wide: any; side: any; class?: string; inverted?: boolean; style?: {}; size?: string; ordered?: boolean; vertical?: boolean; unstackable?: boolean; stackable?: boolean; fluid?: boolean; tablet?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};