import { State } from 'xstate'; import { changePaymentProfile } from './changePaymentProfile'; type ChangePaymentProfileMachine = typeof changePaymentProfile; type ChangePaymentProfileState = State; export declare const getChangePaymentProfileStatus: (machineState: ChangePaymentProfileState) => { isLoading: boolean; isError: boolean; }; export declare const getErrorCode: (machineState: ChangePaymentProfileState) => { errorCode: string; }; export declare const changePaymentProfileSelectors: { getChangePaymentProfileStatus: (machineState: ChangePaymentProfileState) => { isLoading: boolean; isError: boolean; }; getErrorCode: (machineState: ChangePaymentProfileState) => { errorCode: string; }; }; export {};