import { Store } from './store'; import { MaybeStepId, State, StateInit, Step, StepIdType, StepInit, StepSide, StepSideInit } from './types'; export type StepsStore = Store, State>; export declare function createStepsStore(initialSteps: ReadonlyArray>, defaultActive?: MaybeStepId): StepsStore; export declare function createSteps(steps: ReadonlyArray, existingIds?: Set): (Step | StepSide)[]; //# sourceMappingURL=state.d.ts.map