import { PaymentMethod } from '../../machines'; type Options = { catalogId: number; formElementId: string; subscriptionId: number; paymentMethodType: PaymentMethod; onCreateSuccess: () => void; activePaymentProfileId: number; isActivePaymentMethod: boolean; }; export declare const useCreatePaymentProfile: ({ formElementId, paymentMethodType, onCreateSuccess, activePaymentProfileId, isActivePaymentMethod, subscriptionId, }: Options) => { isProcessing: boolean; isProfileConnectionError: boolean; savePaymentMethod: () => import("xstate").State>; service: import("xstate").Interpreter>; }; export {};