/** * UI Module Internal Types * * Type definitions for dynamically imported ESM modules * @module utils/ui/types */ export type ChalkInstance = any; export type BoxenFunction = any; export type GradientStringInstance = any; export type OraModule = any; export type ListrClass = any; /** * Color palette (Professional cyan-to-blue) */ export declare const COLORS: { readonly primary: "#00ECFA"; readonly secondary: "#0099FF"; readonly neutral: "#808080"; }; /** * Module cache for lazy loading */ export interface ModuleCache { chalk: ChalkInstance | null; boxen: BoxenFunction | null; gradient: GradientStringInstance | null; ora: OraModule | null; listr: ListrClass | null; } /** * Shared module state */ export declare const moduleCache: ModuleCache; export declare let initialized: boolean; export declare function setInitialized(value: boolean): void; //# sourceMappingURL=types.d.ts.map