import BaseClass from "../utils/BaseClass"; import { OrderCollection } from './Order'; import { SingleRelationship } from "../typings/Library"; import { PaymentGatewayCollection } from './PaymentGateway'; export declare class CheckoutComPaymentCollection extends BaseClass { static className: string; paymentType: string; token: string; sessionId: string; sourceId: string; customerToken: string; redirectUri: string; paymentResponse: Record; _authorize: boolean; _details: boolean; _refresh: boolean; id: string; reference: string; referenceOrigin: string; createdAt: Date; updatedAt: Date; metadata: object; order: () => SingleRelationship; loadOrder: () => SingleRelationship; paymentGateway: () => SingleRelationship; loadPaymentGateway: () => SingleRelationship; static define(): void; } declare const CheckoutCom: import("../typings/Library").BaseResource; export default CheckoutCom;