import { type LicenseConfig, type PlanName } from '../licensing.js'; export interface KernelLicense { tier: PlanName; valid: boolean; checkedAt: number; } export interface LicenseValidationResult { ok: boolean; tier: PlanName; enabled: boolean; reason?: string; } export declare function validateKernelLicense(config?: LicenseConfig): LicenseValidationResult; export declare function isKernelEnabled(config?: LicenseConfig): boolean; export declare function getKernelTier(config?: LicenseConfig): PlanName; //# sourceMappingURL=kernel-license.d.ts.map