import * as React from 'react';
import type { ProgressProps, ProgressSemanticAllType } from './progress';
interface ProgressStepsProps extends Omit<ProgressProps, 'classNames' | 'styles'> {
    steps: number;
    strokeColor?: string | string[];
    railColor?: string;
    /** @deprecated Please use `railColor` instead */
    trailColor?: string;
    classNames: NonNullable<ProgressSemanticAllType['classNames']>;
    styles: NonNullable<ProgressSemanticAllType['styles']>;
}
declare const Steps: React.FC<ProgressStepsProps>;
export default Steps;
