import { Exception } from '@adonisjs/core/exceptions'; import type Stripe from 'stripe'; import { type ManagesStripeContract } from '../contracts.js'; export declare class InvalidPaymentError extends Exception { static code: string; static invalidOwner(paymentMethod: Stripe.PaymentMethod, owner: ManagesStripeContract, options?: ErrorOptions): InvalidPaymentError; }