/// <reference types="react" />
import "./style.scss";
type StepItem = {
    status: "finish" | "process" | "wait";
    title: string;
    subtitle?: string;
    width?: number;
    subWidth?: number;
};
export interface StepsProps {
    size?: "small" | "large";
    items: StepItem[];
    direction?: "vertical" | "horizontal";
}
declare const Steps: (props: StepsProps) => JSX.Element;
export default Steps;
