/** * Mock for @astermindai/license-runtime * Used in Jest tests to avoid ESM import issues */ export declare const initLicenseRuntime: jest.Mock; export declare const setLicenseToken: jest.Mock; export declare const requireFeature: jest.Mock; export declare const hasFeature: jest.Mock; export declare const getLicenseState: jest.Mock; export type LicenseState = { status: 'valid' | 'missing' | 'expired' | 'invalid'; payload?: any; reason?: string; };