import { NamiPurchase } from "./externals/purchase";
import { NamiSKU } from "./externals/sku";
export type IEntitlements = {
    id: string;
    entitlement_ref_id: string;
    name: string;
    description: string | null;
    type: string;
    expires?: string;
};
export type NamiEntitlement = {
    activePurchases: NamiPurchase[];
    desc: string;
    name: string;
    namiId: string;
    purchasedSkus: NamiSKU[];
    referenceId: string;
    relatedSkus: NamiSKU[];
    expires?: number;
};
export type NamiActiveEntitlementsHandler = (entitlement: NamiEntitlement[]) => void;
