import BaseClass from "../utils/BaseClass"; import { OrderCollection } from './Order'; import { SingleRelationship } from "../typings/Library"; export declare class ExternalGatewayCollection extends BaseClass { static className: string; authorizaUrl: string; captureUrl: string; createdAt: Date; id: string; metadata: Record; name: string; reference: string; referenceOrigin: string; refundUrl: string; sharedSecret: string; updatedAt: Date; voidUrl: string; order: () => SingleRelationship; static define(): void; } declare const ExternalGateway: import("../typings/Library").BaseResource; export default ExternalGateway;