import React from "react"; import { Json } from "../json"; import { EScope } from "../store"; export declare type StepsFunc = (treatment: Json) => React.ElementType[] | undefined; export interface StepsProps { steps: React.ElementType[] | StepsFunc; progressKey: string; doneKey: string; object?: EScope; } export declare const Steps: React.FC;