/* Types for bannerConfig.js. */ export type BannerPart = { text: string; href?: string; external?: boolean }; export declare const SITE_BANNER: { enabled: boolean; id: string; content: BannerPart[]; dismissible: boolean; };