UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

10 lines (9 loc) 255 B
/// <reference types="react" /> import Step from "./step"; import { StepsProps } from "./steps"; interface StepsInterface { (props: StepsProps): JSX.Element; Step: typeof Step; } declare const Steps: StepsInterface; export default Steps;