export declare class BillingSubscriptionShopify { subscriptionId: number; shopifySubscriptionId: number; provider: string; customerId: number; customerEmail: string | null; status: string; shopifyOrderId: number | null; nextBillingAt: Date | null; lastPaymentStatus: string | null; totalLineItemPrice: number | null; billingIntervalUnit: string | null; billingIntervalCount: number | null; paymentMethodId: number | null; paymentMethodType: string | null; paymentMethodDetails: object | null; isPrepaid: boolean; isMarkedForCancellation: boolean; lines: object | null; pausedAt: Date | null; canceledAt: Date | null; activatedAt: Date | null; createdAt: Date | null; updatedAt: Date | null; }