import { type SubscriptionPlanType } from '@appsemble/types'; /** * Updates the organization's subscription to the given plan * * @param organizationId ID of the organization to assign the subscription to * @param subscriptionPlan Type of subscription plan */ export declare function updateSubscription(organizationId: string, subscriptionPlan: SubscriptionPlanType): Promise;