import type { ValuesOf } from "../../util/typings.js"; /** * The state variations for the WizardStep component * @public */ export declare const WizardStepStates: { readonly incomplete: "incomplete"; readonly complete: "complete"; readonly error: "error"; }; /** * The state types for the WizardStep component * @public */ export type WizardStepState = ValuesOf; export declare const WizardStepEvents: { readonly stepChange: "step-change"; readonly stepSelect: "step-select"; }; export type WizardStepEvent = ValuesOf; //# sourceMappingURL=wizard-step.options.d.ts.map