UNPKG

@vnmfify/core

Version:

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

10 lines (9 loc) 307 B
/// <reference types="react" /> import { StepsDirection } from "./steps.shared"; interface StepsContextValue { value?: number; direction?: StepsDirection; alternativeLabel?: boolean; } declare const StepsContext: import("react").Context<StepsContextValue>; export default StepsContext;