UNPKG

desmy-react

Version:

Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.

19 lines (18 loc) 531 B
import { Component } from 'react'; import { WizardProps } from '../apis/SharedProps'; type Props = WizardProps & { onRef?: (instance: DesmyWizard) => void; }; type WizardState = { step: number; }; declare class DesmyWizard extends Component<Props, WizardState> { constructor(props: Props); componentDidMount(): void; nextStep: () => void; prevStep: () => void; jumpStep: (step: number) => void; getStep: () => number; render(): import("react/jsx-runtime").JSX.Element; } export { DesmyWizard };