import { ServiceClient } from "../service-client"; export declare class Pricing extends ServiceClient { protected getServiceName(): string; getAllSubscriptionProducts(isPublic?: boolean): Promise; getActiveTenantsSubscriptions(isPublic?: boolean): Promise; createPlan(payload: { plan: any; prices: any[]; features: any[]; usageBasedPrices: any[]; }): Promise; createPlans(payload: { plans: any[]; }): Promise; }