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