import { CacheStateType } from '../_types'; declare type ParamsType = { minAllowedQuota?: number; }; declare type OutputType = { quotaExceed: boolean; cacheState: CacheStateType; }; export declare const checkQuotaExceed: ({ minAllowedQuota, }: ParamsType) => Promise; export {};