import type { TStepperOrientation, TStepperPosition, TStepperProps, TStepperStatus, TStepperTextPosition, TStepProps } from './Stepper.type'; export declare const STEP_DISPLAY_NAME = "Step"; export declare const STEPPER_TEXT_POSITIONS: TStepperTextPosition[]; export declare const STEPPER_TEXT_POSITION: { [key in TStepperTextPosition]: key; }; export declare const STEPPER_ORIENTATIONS: TStepperOrientation[]; export declare const STEPPER_ORIENTATION: { [key in TStepperOrientation]: key; }; export declare const STEPPER_POSITIONS: TStepperPosition[]; export declare const STEPPER_POSITION: { [key in TStepperPosition]: key; }; export declare const STEPPER_STATUSES: TStepperStatus[]; export declare const STEPPER_STATUS: { [key in TStepperStatus]: key; }; export declare const STEP_DEFAULT_PROPS: TStepProps; export declare const STEPPER_DEFAULT_PROPS: Omit;