export declare enum EKwikUIStepperOrientation {
    HORIZONTAL = "horizontal",
    VERTICAL = "vertical"
}
export declare const VKwikUIStepperOrientation: readonly [EKwikUIStepperOrientation.HORIZONTAL, EKwikUIStepperOrientation.VERTICAL];
export declare type TKwikUIStepperOrientation = (typeof VKwikUIStepperOrientation)[number];
export declare type TKwikUIStep = {
    label: string;
    state: TKwikUIStepState;
};
export declare enum EKwikUIStepState {
    NORMAL = "normal",
    PASS = "pass",
    ERROR = "error"
}
export declare const VKwikUIStepState: readonly [EKwikUIStepState.NORMAL, EKwikUIStepState.PASS, EKwikUIStepState.ERROR];
export declare type TKwikUIStepState = (typeof VKwikUIStepState)[number];
