import { SupportedCurrency } from './SupportedCurrency'; export interface PaymentStripeInvoice { closed: boolean; currency: SupportedCurrency; date: number; id: string; number: string; paid: boolean; total: number; url: string; } //# sourceMappingURL=PaymentStripeInvoice.d.ts.map