import { CustomerAlreadyCreatedError } from './customer_already_created.js'; import { IncompletePaymentError } from './incomplete_payment.js'; import { InvalidArgumentError } from './invalid_argument.js'; import { InvalidCustomerError } from './invalid_customer.js'; import { InvalidInvoiceError } from './invalid_invoice.js'; import { InvalidPaymentError } from './invalid_payment.js'; import { SubscriptionUpdateFailureError } from './subscription_update_failure.js'; export declare const E_CUSTOMER_ALREADY_CREATED: typeof CustomerAlreadyCreatedError; export declare const E_INCOMPLETE_PAYMENT: typeof IncompletePaymentError; export declare const E_INVALID_ARGUMENT: typeof InvalidArgumentError; export declare const E_INVALID_CUSTOMER: typeof InvalidCustomerError; export declare const E_INVALID_INVOICE: typeof InvalidInvoiceError; export declare const E_INVALID_PAYMENT: typeof InvalidPaymentError; export declare const E_SUBSCRIPTION_UPDATE_FAILURE: typeof SubscriptionUpdateFailureError;