import BaseClass from "../utils/BaseClass"; import { MultiRelationship } from "../typings/Library"; import { PaypalPaymentCollection } from './PaypalPayment'; import { PaymentMethodCollection } from './PaymentMethod'; export declare class PaypalGatewayCollection extends BaseClass { static className: string; clientId: string; clientSecret: string; name: string; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; paypalPayments: () => MultiRelationship; loadPaypalPayments: () => MultiRelationship; paymentMethods: () => MultiRelationship; loadPaymentMethods: () => MultiRelationship; static define(): void; } declare const PaypalGateway: import("../typings/Library").BaseResource; export default PaypalGateway;