import { ServiceClient } from "../service-client"; export declare class Subscription extends ServiceClient { protected getServiceName(): string; getAllSubscriptionProducts(isPublic?: boolean): Promise; getActiveTenantsSubscriptions(isPublic?: boolean): Promise; getAllSubscriptionProductsWithTenants(): Promise; getSubscriptionProduct(productId: string): Promise; getAllTenantSubscriptionProducts(filters?: any, pagination?: { page: number; pageSize: number; }): Promise<{ items: any[]; pagination: any; }>; }