import * as React from 'react'; import { StandardProps } from '..'; export interface StepIconProps extends StandardProps, StepIconClasskey> { active?: boolean; completed?: boolean; error?: boolean; icon: React.ReactNode; } export type StepIconClasskey = 'root' | 'text' | 'active' | 'completed' | 'error'; declare const StepIcon: React.ComponentType; export default StepIcon;