import { type Component, type Snippet } from "svelte"; type $$ComponentProps = { title: string; icon?: Component; children?: Snippet; href?: string; horizontal?: boolean; }; declare const Card: Component<$$ComponentProps, {}, "">; type Card = ReturnType; export default Card;