@alifd/meet-react
Version:
Fusion Mobile React UI System Component
11 lines (10 loc) • 378 B
TypeScript
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;