import { ForwardRefExoticComponent } from 'react';
import Item from './item';
import { StepItemProps, StepProps } from './types';
import './styles/index.scss';
export interface StepComponent extends ForwardRefExoticComponent<StepProps> {
    Item: typeof Item;
}
declare const ExpandedStep: StepComponent;
export { Item, StepItemProps, StepProps };
export default ExpandedStep;
