import { Footer } from "flowbite-svelte"; import type { ClassValue } from "svelte/elements"; type BrandClasses = { aClass?: ClassValue; spanClass?: ClassValue; imgClass?: ClassValue; }; type FooterLinkClasses = { class?: ClassValue; link?: ClassValue; }; interface Props { brand?: { name: string; href: string; }; lis?: { name: string; href: string; }[]; footerType?: "logo" | "sitemap" | "default" | "socialmedia" | undefined; footerClass?: ClassValue; divClass?: ClassValue; brandClasses?: BrandClasses; footerLinkGroupClass?: ClassValue; footerLinkClasses?: FooterLinkClasses; } /** * [Go to docs](https://runes-webkit.codewithshin.com/) * ## Props * @props: brand: any; * @props:divClass: any; * @props:footerClass: any; * @props:lis: any; * @props:footerType: any = "logo"; * @props:brandClasses: any; * @props:footerLinkGroupClass: any; * @props:footerLinkClasses: any; */ declare const Footer: import("svelte").Component; type Footer = ReturnType; export default Footer;