import { IVariable } from "../types"; export declare const FLOW_SCOPE_ALL = "__all__"; export declare const FLOW_SCOPE_GLOBAL = "__global__"; export declare const FLOW_SCOPE_MAIN = "__global__"; export declare const normalizeVariableScope: (variable: T) => T; export declare const isVariableVisibleInFlowScope: (variable: IVariable, scopeViewId: string) => boolean; export declare const shouldResetVariableOnLeaveView: (variable: IVariable, fromViewId: string | null) => boolean; export declare const shouldResetVariableOnEnterView: (variable: IVariable, toViewId: string | null) => boolean; export declare const reExecuteVariable: (variable: IVariable) => void;