import type { HTMLAttributes } from 'svelte/elements'; interface Props extends HTMLAttributes { title?: string; subtitle?: string; elevated?: boolean; children?: import('svelte').Snippet; } declare const Card: import("svelte").Component; type Card = ReturnType; export default Card;