import type { GatewayConfig, ProviderState } from "../../core/types.js"; export interface BannerOptions { version: string; port: number; /** Whether the dashboard is being served. */ hasDashboard: boolean; /** Whether BG_TOKEN is set. */ authEnabled: boolean; /** Profiles status — affects which line we print. */ profilesStatus: "enabled" | "disabled"; /** Compute health summary from gateway.registry. */ providers: ProviderState[]; /** Wall-clock milliseconds from process start. */ readyMs: number; config: GatewayConfig; } export declare function printStartupBanner(opts: BannerOptions): void; //# sourceMappingURL=banner.d.ts.map