import { FlowManagerActionTypes, UpdateStepsInformationInput } from './types'; export declare function initialState(nestedSlice?: string): FlowManagerActionTypes; export declare function startFlowAction(flowType: string, currentStep?: string): FlowManagerActionTypes; export declare function endFlowAction(): FlowManagerActionTypes; export declare function addSubFlowTypeAction(subFlowType: string): FlowManagerActionTypes; export declare function removeSubFlowTypeAction(subFlowType: string): FlowManagerActionTypes; export declare function updateStepsInformationAction(stepsInformation: UpdateStepsInformationInput): FlowManagerActionTypes; export declare function setSubFlowTypesAction(subFlowTypes: Array): FlowManagerActionTypes;