import React from 'react';
import { ILine } from '../Line/Line';
import { IColor, IVersion, IPropsAny } from '../types';
export declare type IStepper = ILine & {
    version?: IVersion;
    iconColor?: IColor;
    iconColorActive?: IColor;
    dividerColor?: IColor;
    dividerColorActive?: IColor;
    active?: number;
    completed?: Record<any, boolean>;
    free?: boolean;
    stepDirection?: 'row' | 'column';
    orientation?: 'vertical' | 'horizontal';
    dividerActive?: boolean;
    individualDividers?: boolean;
    DividerProps?: IPropsAny;
};
declare const Stepper: React.FC<IStepper>;
export default Stepper;
