@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
13 lines (12 loc) • 425 B
TypeScript
/// <reference types="react" />
import { StepperProps } from "./stepper";
import StepperButton from "./stepper-button";
import StepperInput from "./stepper-input";
export type { StepperProps } from "./stepper";
interface StepperInterface {
(props: StepperProps): JSX.Element;
Input: typeof StepperInput;
Button: typeof StepperButton;
}
declare const Stepper: StepperInterface;
export default Stepper;