///
import { IDecisionTemplateProps } from './DecisionTemplate';
export interface IDecisionTreeContext {
decision: IDecisionTemplateProps | null;
hasNext: boolean;
hasPrevious: boolean;
next: () => void;
back: () => void;
reset: () => void;
goTo: (decisionId: string, skipHistory?: boolean) => void;
}
export declare const DecisionTreeContext: import("react").Context;