Files
video-gen/video-gen-admin/node_modules/antd/es/progress/Steps.d.ts
T
2026-05-25 17:08:18 +08:00

14 lines
531 B
TypeScript

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