@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
12 lines • 349 B
TypeScript
import React from 'react';
import type { StepItem } from './step';
export type StepsProps = {
current?: number;
items: Array<StepItem>;
onChange?: (currentStep: number) => void;
id?: string;
className?: string;
noReturnMessage?: string;
};
export declare const Steps: React.FC<StepsProps>;
//# sourceMappingURL=steps.d.ts.map