export declare const StepperOrientations: { readonly Horizontal: "horizontal"; readonly Vertical: "vertical"; }; export type StepperOrientation = typeof StepperOrientations[keyof typeof StepperOrientations]; export declare const StepperStatuses: { readonly Incomplete: "incomplete"; readonly Current: "current"; readonly Complete: "complete"; readonly Error: "error"; }; export type StepperStatus = typeof StepperStatuses[keyof typeof StepperStatuses];