import type { Snippet } from "svelte"; import type { ClassValue } from "svelte/elements"; interface Props { children?: Snippet; pkgName?: string; pkgVersion?: string; repoUrl?: string; title?: string; h2Class?: ClassValue; divClass?: ClassValue; ulClass?: ClassValue; liClass?: ClassValue; aClass?: ClassValue; class?: ClassValue; cardsize?: "xl" | "xs" | "sm" | "md" | "lg" | undefined; runeswebkitVersion?: string; runaticsVersion?: string; runesMetaTagsVersion?: string; svelteVersion?: string; svelteKitVersion?: string; flowbitesvelteVersion?: string; svelteRuneHighlightVersion?: string; viteVersion?: string; tailwindcssVersion?: string; } /** * [Go to docs](https://runes-webkit.codewithshin.com/) * ## Props * @props: children: any; * @props:pkgName: any; * @props:pkgVersion: any; * @props:runeswebkitVersion: any; * @props:runaticsVersion: any; * @props:runesMetaTagsVersion: any; * @props:svelteVersion: any; * @props:svelteKitVersion: any; * @props:flowbitesvelteVersion: any; * @props:svelteRuneHighlightVersion: any; * @props:viteVersion: any; * @props:tailwindcssVersion: any; * @props:repoUrl: any; * @props:title: any = "Technical information about this website"; * @props:h2Class: any; * @props:divClass: any; * @props:ulClass: any; * @props:liClass: any; * @props:aClass: any; * @props:cardsize: any = "xl"; * @props:class: string; */ declare const TechInfo: import("svelte").Component; type TechInfo = ReturnType; export default TechInfo;