@kelvininc/ui-components
Version:
Kelvin UI Components
6 lines (5 loc) • 455 B
TypeScript
import { IWizardFooter } from '../wizard-footer/wizard-footer.types';
import { IWizardHeader } from '../wizard-header/wizard-header.types';
import { IWizardStep, StepState } from './wizard.types';
export declare const buildHeaderConfig: (steps?: IWizardStep[], currentStep?: number) => IWizardHeader;
export declare const buildFooterConfig: (steps?: IWizardStep[], currentStep?: number, currentStepState?: StepState, disabled?: boolean) => IWizardFooter;