import { AccountType, Config, SubscriptionInfo, UnauthorizedConfig } from '../types';
export declare function isAppFree(config: Config | UnauthorizedConfig): boolean;
export declare function checkSubscription({ config, token, organization, accountType, }: {
    config: Config;
    token: string;
    organization: string;
    accountType: AccountType;
}): Promise<SubscriptionInfo>;
export declare function clearCache(organization: string): void;
