import { State } from 'xstate'; import { changePlan } from './changePlan'; type ChangePlanMachine = typeof changePlan; type ChangePlanState = State; export declare const getChangePlanStatus: (machineState: ChangePlanState) => { configurePlanStep: boolean; configurePlanStepLoading: boolean; previewPlanStep: boolean; previewPlanLoading: boolean; updatePlanLoading: boolean; updateSuccess: boolean; isError: boolean; }; export declare const getError: (machineState: ChangePlanState) => import("./types").ErrorTypes; export declare const getProducts: (machineState: ChangePlanState) => import("./types").Product[]; export declare const getSelectedPlan: (machineState: ChangePlanState) => number; export declare const getChangePlanPreview: (machineState: ChangePlanState) => import("./types").ChangePlanPreview; export declare const changePlanSelectors: { getError: (machineState: ChangePlanState) => import("./types").ErrorTypes; getChangePlanPreview: (machineState: ChangePlanState) => import("./types").ChangePlanPreview; getProducts: (machineState: ChangePlanState) => import("./types").Product[]; getSelectedPlan: (machineState: ChangePlanState) => number; getChangePlanStatus: (machineState: ChangePlanState) => { configurePlanStep: boolean; configurePlanStepLoading: boolean; previewPlanStep: boolean; previewPlanLoading: boolean; updatePlanLoading: boolean; updateSuccess: boolean; isError: boolean; }; }; export {};