import { State } from 'xstate'; import { deletePaymentProfile } from './deletePaymentProfile'; type DeletePaymentProfileMachine = typeof deletePaymentProfile; type DeletePaymentProfile = State; export declare const getDeletePaymentProfileStatus: (machineState: DeletePaymentProfile) => { isLoading: boolean; hasError: boolean; }; export declare const getError: (machineState: DeletePaymentProfile) => { errorCode: string; subscriptions: import("./types").AffectedSubscription[]; }; export declare const deletePaymentProfileSelectors: { getDeletePaymentProfileStatus: (machineState: DeletePaymentProfile) => { isLoading: boolean; hasError: boolean; }; getError: (machineState: DeletePaymentProfile) => { errorCode: string; subscriptions: import("./types").AffectedSubscription[]; }; }; export {};