import { OrgType, StaticPropsOrgType } from '@mintlify/models';
import { DeploymentEntitlement, DeploymentEntitlements } from '@mintlify/validation';
export declare const TRIAL_ENTITLEMENTS: DeploymentEntitlement[];
export declare function checkAccess({ entitlements, org, entitlementToCheck, allowTrialAccess, }: {
    entitlements: DeploymentEntitlements | undefined;
    org?: OrgType | StaticPropsOrgType;
    entitlementToCheck: DeploymentEntitlement;
    allowTrialAccess?: boolean;
}): boolean;
