import BaseClass from "../utils/BaseClass"; import { MultiRelationship } from "../typings/Library"; import { PaymentMethodCollection } from './PaymentMethod'; import { AdyenPaymentCollection } from './AdyenPayment'; export declare class AdyenGatewayCollection extends BaseClass { static className: string; apiKey: string; createdAt: Date; id: string; liveUrlPrefix: string; merchantAccount: string; metadata: object; name: string; reference: string; referenceOrigin: string; updatedAt: Date; adyenPayments: () => MultiRelationship; loadAdyenPayments: () => MultiRelationship; paymentMethods: () => MultiRelationship; loadPaymentMethods: () => MultiRelationship; static define(): void; } declare const AdyenGateway: import("../typings/Library").BaseResource; export default AdyenGateway;