export type AnnouncementBar = { text: string; cta: string; href: string; }; export interface NavDropdownItem { badge?: string; description: string; enabled: boolean; href: string; icon: string; label: string; order: number; } export interface NavItem { dropdown?: NavDropdownItem[]; enabled: boolean; href?: string; label: string; order: number; } export interface Cta { href: string; enabled: boolean; label: string; order: number; type: "primary" | "secondary"; } export interface FooterLinkItem { label: string; href: string; badge?: string; } export interface FooterColumn { heading: string; links: FooterLinkItem[]; } export interface SocialLink { enabled: boolean; href: string; icon: string; label: string; order: number; } export interface FooterStat { value: string; label: string; } export interface TechBadge { label: string; enabled: boolean; order: number; } export interface HeaderProps { navItems: NavItem[]; announcementBar: AnnouncementBar; headerCta: Cta[]; logo: string; email: string; phone: string; location: string; } export interface FooterProps { badges: TechBadge[]; columns: FooterColumn[]; ctas: Cta[]; description: string; email: string; founded: string; location: string; logo: string; name: string; newsletterBody: string; newsletterCta: string; newsletterDisclaimer: string; newsletterHeading: string; newsletterPlaceholder: string; phone: string; socialLinks: SocialLink[]; stats: FooterStat[]; tagline: string; year: string; } export interface AppCorpV1HomeTemplateProps { siteHeader: HeaderProps; siteFooter: FooterProps; } export declare const announcementBar: AnnouncementBar; export declare const navItems: NavItem[]; export declare const headerCta: Cta[]; export declare const header: HeaderProps; export declare const footer: FooterProps; export declare const homePageData: AppCorpV1HomeTemplateProps;