/** * @buoy-gg/license * * License validation for React Buoy Pro features * * Simplified model: Validate license key, cache locally. * Device registration for visibility (no limits enforced). * Keygen tracks validation calls for usage analytics. */ export { LicenseManager } from "./LicenseManager"; export type { DeviceRegistrationInfo, DeviceRegistrationCallback, } from "./LicenseManager"; export { DeviceRegistrationModal } from "./DeviceRegistrationModal"; export { useLicense, useFeatureAccess, useIsPro } from "./hooks"; export type { LicenseState, LicenseEvent, LicenseListener, LicenseValidationResult, CachedLicense, } from "./types"; export declare function setLicenseKey(key: string): Promise; export declare function isPro(): boolean; export declare function hasEntitlement(code: string): boolean; //# sourceMappingURL=index.d.ts.map