import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { OrderInstance } from './Orders'; import { PaymentGatewayInstance } from './PaymentGateways'; export interface StripePaymentAttributes { client_secret: string; publishable_key: string; options: any; payment_method: any; } export interface StripePaymentRelationships { order: OrderInstance; payment_gateway: PaymentGatewayInstance; } export declare type StripePaymentInstance = ConcreteResourceInstance; export declare const StripePaymentsConfig: ResourceConfig; export declare const StripePayments: Resource; //# sourceMappingURL=StripePayments.d.ts.map