import { GetValues } from '../constants'; export type NavLinkFooter = { text: string; href: string; }; export type SponsorFooter = { text: string; href: string; image: string; }; export type ContactFooter = { email: string; location: string; phone: string; reportLink: NavLinkFooter; vat: string; }; export type SectionFooter = { title: string; navLinks: NavLinkFooter[]; }; export declare const FooterVariantEnum: { readonly DEFAULT: "default"; readonly REVISED: "revised"; }; export type FooterVariant = GetValues; export type FooterSchema = { navLinks: NavLinkFooter[]; sponsors: SponsorFooter[]; sponsorsTitle?: string; contact: ContactFooter; sections: SectionFooter[]; institutionName: string; institutionName2: string; followTitle?: string; variant?: FooterVariant; };