import { type PropType } from "vue"; export type 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; oncancel?: () => void; onback?: () => void; onnext?: () => void; onfinish?: () => void; class?: string; }; export declare const Wizard: import("vue").DefineComponent; required: true; }; currentStep: { type: NumberConstructor; default: number; }; stepTitle: { type: StringConstructor; default: undefined; }; cancelLabel: { type: StringConstructor; default: string; }; backLabel: { type: StringConstructor; default: string; }; nextLabel: { type: StringConstructor; default: string; }; finishLabel: { type: StringConstructor; default: string; }; isLast: { type: BooleanConstructor; default: boolean; }; oncancel: { type: PropType<() => void>; default: undefined; }; onback: { type: PropType<() => void>; default: undefined; }; onnext: { type: PropType<() => void>; default: undefined; }; onfinish: { type: PropType<() => void>; default: undefined; }; class: { type: StringConstructor; default: undefined; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; required: true; }; currentStep: { type: NumberConstructor; default: number; }; stepTitle: { type: StringConstructor; default: undefined; }; cancelLabel: { type: StringConstructor; default: string; }; backLabel: { type: StringConstructor; default: string; }; nextLabel: { type: StringConstructor; default: string; }; finishLabel: { type: StringConstructor; default: string; }; isLast: { type: BooleanConstructor; default: boolean; }; oncancel: { type: PropType<() => void>; default: undefined; }; onback: { type: PropType<() => void>; default: undefined; }; onnext: { type: PropType<() => void>; default: undefined; }; onfinish: { type: PropType<() => void>; default: undefined; }; class: { type: StringConstructor; default: undefined; }; }>> & Readonly<{}>, { class: string; nextLabel: string; backLabel: string; stepperLabel: string; currentStep: number; stepTitle: string; cancelLabel: string; finishLabel: string; isLast: boolean; oncancel: () => void; onback: () => void; onnext: () => void; onfinish: () => void; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; //# sourceMappingURL=Wizard.d.ts.map