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