import type { Snippet } from 'svelte'; type $$ComponentProps = { title: string; /** Turns the card into a link. */ href?: string; external?: boolean; /** Optional leading icon. */ icon?: Snippet; /** Card body / description. */ children?: Snippet; }; declare const Card: import("svelte").Component<$$ComponentProps, {}, "">; type Card = ReturnType; export default Card;