import React from 'react'; import { IComponentBaseProps, ComponentColor } from '../types'; export type StepProps = Omit, 'value' | 'color'> & IComponentBaseProps & { value?: string; color?: 'neutral' | ComponentColor; }; declare const Step: React.ForwardRefExoticComponent, "value" | "color"> & IComponentBaseProps & { value?: string | undefined; color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; } & React.RefAttributes>; export default Step;