import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface StepsListBaseProps extends PolymorphicProps { } export interface StepsListProps extends HTMLProps<'div'>, StepsListBaseProps { } export declare const StepsList: ForwardRefExoticComponent>;