import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { PaymentMethodInstance } from './PaymentMethods'; export interface PaymentGatewayAttributes { name: string; } export interface PaymentGatewayRelationships { payment_methods: PaymentMethodInstance[]; } export declare type PaymentGatewayInstance = ConcreteResourceInstance; export declare const PaymentGatewaysConfig: ResourceConfig; export declare const PaymentGateways: Resource; //# sourceMappingURL=PaymentGateways.d.ts.map