/** * API Client Provider Configuration * Environment and API client configuration constants */ /** * Environment configuration for API client */ export declare const ENV_CONFIG: { /** * Current Node.js environment (development, production, test) */ env: "development" | "production"; /** * Public API key from environment variables */ apiKey: string; }; /** * API client configuration with encryption settings */ export declare const API_CONFIG: { /** * Base URL for API requests */ baseURL: string; /** * Encryption configuration for secure API communication */ encryption: { /** * Whether encryption is enabled */ enabled: boolean; /** * Encryption key configuration */ key: { /** * Key identifier for production environment */ id: string; /** * Encryption key from environment variables */ key: string; /** * Encryption algorithm (AES-GCM) */ algorithm: "AES-GCM"; /** * Key format specification */ format: "raw"; }; }; }; //# sourceMappingURL=apiConfig.d.ts.map