/** * @buoy-gg/license (Web/Electron) * * License validation for React Buoy Pro features * * Simplified model: Validate license key, cache locally. * No device registration or limits - we trust our customers. * Keygen tracks validation calls for usage analytics. */ export { LicenseManager } from "./LicenseManager"; 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.web.d.ts.map