/** @typedef {typeof __propDef.props} StepProps */ /** @typedef {typeof __propDef.events} StepEvents */ /** @typedef {typeof __propDef.slots} StepSlots */ export default class Step extends SvelteComponentTyped<{ icon: any; ordered: any; href: any; link?: boolean; class?: string; disabled?: boolean; style?: {}; active?: boolean; as?: string; completed?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type StepProps = typeof __propDef.props; export type StepEvents = typeof __propDef.events; export type StepSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { icon: any; ordered: any; href: any; link?: boolean; class?: string; disabled?: boolean; style?: {}; active?: boolean; as?: string; completed?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};