import { StepsItemProps, StepsProps, StepsStatus } from "./types.js"; import { Steps } from "./steps.js"; import { StepsItem } from "./steps-item.js"; //#region src/steps/index.d.ts type ISteps = typeof Steps & { Step: typeof StepsItem; }; declare const DefaultSteps: ISteps; //#endregion export { DefaultSteps }; //# sourceMappingURL=index.d.ts.map