import BaseClass from "../utils/BaseClass"; import { MultiRelationship } from "../typings/Library"; import { StripePaymentCollection } from './StripePayment'; import { PaymentMethodCollection } from './PaymentMethod'; export declare class StripeGatewayCollection extends BaseClass { static className: string; createdAt: Date; id: string; metadata: Record; name: string; reference: string; referenceOrigin: string; updatedAt: Date; webhookEndpointId: string; webhookEndpointSecret: string; webhookEndpointUrl: string; stripePayments: () => MultiRelationship; loadStripePayments: () => MultiRelationship; paymentMethods: () => MultiRelationship; loadPaymentMethods: () => MultiRelationship; static define(): void; } declare const StripeGateway: import("../typings/Library").BaseResource; export default StripeGateway;