/** * @fileoverview Banner configurations for Advanced Logger */ import type { BannerType, ThemeVariant } from '../types/index.js'; /** * Banner variants for different display capabilities */ export declare const BANNER_VARIANTS: { simple: { text: string; style: string; }; ascii: { text: string; style: string; }; unicode: { text: string; style: string; }; svg: { text: string; style: string; }; animated: { text: string; style: string; }; }; /** * Theme-specific banners for enhanced visual theming */ export declare const THEME_BANNERS: Record; /** * Feature detection for banner capabilities. Returns `'simple'` immediately * if neither `navigator` nor `document` exist (Node, SSR, workers). * */ export declare function detectBannerCapabilities(): BannerType; /** * Display initialization banner with advanced styling. No-op in Node, * SSR, or Web Workers (DOM-guard at the top). * */ export declare function displayInitBanner(bannerType?: BannerType): void; //# sourceMappingURL=banners.d.ts.map