import { Client } from "../client"; export declare class TenantSubscription { client: Client; constructor(client: Client); getOrPersistTenantSubscription(tenantId: string): Promise; getTenantSubscriptions(): Promise; createTenantSubscription(tenantId: string, stripeCustomerId: string): Promise<{ id: string; tenantId: string; stripeCustomerId: string; }>; }