import type { Snippet } from "svelte"; export interface WizardStep { label: string; description?: string; } export type WizardProps = { stepperLabel?: string; steps: WizardStep[]; currentStep?: number; stepTitle: string; cancelLabel?: string; backLabel?: string; nextLabel?: string; finishLabel?: string; isLast?: boolean; children?: Snippet; oncancel?: () => void; onback?: () => void; onnext?: () => void; onfinish?: () => void; }; declare const Wizard: import("svelte").Component; type Wizard = ReturnType; export default Wizard; //# sourceMappingURL=Wizard.svelte.d.ts.map