import BaseClass from "../utils/BaseClass"; import { MultiRelationship } from "../typings/Library"; import { PaymentMethodCollection } from './PaymentMethod'; import { BraintreePaymentCollection } from './BraintreePayment'; export declare class BraintreeGatewayCollection extends BaseClass { static className: string; name: string; merchantAccountId: string; merchantId: string; publicKey: string; privateKey: string; descriptionName: string; descriptionPhone: string; descriptionUrl: string; webhookEndpointUrl: string; id: string; reference: string; referenceOrigin: string; createdAt: Date; updatedAt: Date; metadata: Record; braintreePayments: () => MultiRelationship; loadBraintreePayments: () => MultiRelationship; paymentMethods: () => MultiRelationship; loadPaymentMethods: () => MultiRelationship; static define(): void; } declare const BraintreeGateway: import("../typings/Library").BaseResource; export default BraintreeGateway;