import BaseClass from "../utils/BaseClass"; import { OrderCollection } from './Order'; import { SingleRelationship } from "../typings/Library"; export declare class ExternalPaymentCollection extends BaseClass { static className: string; createdAt: Date; id: string; metadata: object; options: object; paymentSourceToken: string; reference: string; referenceOrigin: string; updatedAt: Date; order: () => SingleRelationship; static define(): void; } declare const ExternalPayment: import("../typings/Library").BaseResource; export default ExternalPayment;