import * as React from 'react';
import type { InternalMarkObj } from '../Marks';
export interface StepsProps {
    prefixCls: string;
    marks: InternalMarkObj[];
    dots?: boolean;
    style?: React.CSSProperties;
    activeStyle?: React.CSSProperties;
}
export default function Steps(props: StepsProps): JSX.Element;
