/** * Central License Configuration for Astermind Premium * * Configure multiple license tokens here. They will be automatically * loaded when the package is imported. * * These tokens MERGE with any tokens set via AstermindLicense.setLicenseKeys() * or AstermindLicense.addLicenseKeys() in your application. * * Usage Options: * 1. Set your license tokens in LICENSE_TOKENS array here, OR * 2. Set the ASTERMIND_LICENSE_TOKEN environment variable, OR * 3. Call AstermindLicense.setLicenseKeys() programmatically in main.tsx */ /** * Your Astermind license tokens. * * Get your license tokens from: * - https://license.astermind.ai * - Your account dashboard * - Contact support@astermind.ai * * Leave as empty array to use programmatic setting only. * * @example * ```typescript * export const LICENSE_TOKENS: string[] = [ * 'eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9...', // Premium token * 'eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9...', // Synth token * ]; * ``` */ export declare const LICENSE_TOKENS: string[]; /** * Legacy single token support (for backward compatibility). * @deprecated Use LICENSE_TOKENS array instead */ export declare const LICENSE_TOKEN: string | null; //# sourceMappingURL=license-config.d.ts.map