import { State } from 'xstate'; import { addOnsConfiguration } from './machine'; export type AddOnsConfigurationMachine = typeof addOnsConfiguration; export type AddOnsConfigurationMachineState = State; export declare const getAddonsState: (machineState: AddOnsConfigurationMachineState) => { configureAllocationsStep: boolean; configureAllocationsStepLoading: boolean; previewAllocationsStep: boolean; previewAllocationsLoading: boolean; updateAllocationsLoading: boolean; updateSuccess: boolean; }; export declare const getAddonsComponents: (machineState: AddOnsConfigurationMachineState) => { components: import("./types").SerializedComponent[]; }; export declare const getAllocationsPreview: (machineState: AddOnsConfigurationMachineState) => { allocationsPreview: import("./types").AllocationsPreview; }; export declare const getAllocations: (machineState: AddOnsConfigurationMachineState) => import("./types").Allocation[]; export declare const getAllocationError: (machineState: AddOnsConfigurationMachineState) => { error: import("./types").Error; }; export declare const addConfigurationSelectors: { getAddonsState: (machineState: AddOnsConfigurationMachineState) => { configureAllocationsStep: boolean; configureAllocationsStepLoading: boolean; previewAllocationsStep: boolean; previewAllocationsLoading: boolean; updateAllocationsLoading: boolean; updateSuccess: boolean; }; getAddonsComponents: (machineState: AddOnsConfigurationMachineState) => { components: import("./types").SerializedComponent[]; }; getAllocationsPreview: (machineState: AddOnsConfigurationMachineState) => { allocationsPreview: import("./types").AllocationsPreview; }; getAllocations: (machineState: AddOnsConfigurationMachineState) => import("./types").Allocation[]; getAllocationError: (machineState: AddOnsConfigurationMachineState) => { error: import("./types").Error; }; };