interface QuickLink { label: string; href: string; } interface Props { mode?: 'ltd' | 'io' | 'space' | 'agency' | 'learn'; aboutText?: string; showNewsletter?: boolean; newsletterTitle?: string; newsletterDescription?: string; quickLinks?: QuickLink[]; showRamsQuote?: boolean; copyrightText?: string; showSocial?: boolean; turnstileSiteKey?: string; isAuthenticated?: boolean; } declare const Footer: import("svelte").Component; type Footer = ReturnType; export default Footer;