export type Plan = "free" | "team" | "enterprise"; export interface EntitlementResult { allowed: boolean; plan: Plan; reason: string; } export declare function checkEntitlement(feature: string): Promise;