import { FlowManagerState } from './types'; export declare const flowTypesSelector: (state: FlowManagerState) => string; export declare const subFlowTypesSelector: (state: FlowManagerState) => string[]; export declare const getCurrentStepSelector: (state: FlowManagerState) => string; export declare const getNextStepSelector: (state: FlowManagerState) => string; export declare const getStepsSelector: (state: FlowManagerState) => string[]; export declare const getIsActiveSelector: (state: FlowManagerState) => boolean;