import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type CardProps = Omit, "class"> & { interactive?: boolean; class?: string; children?: Snippet; }; declare const Card: import("svelte").Component; type Card = ReturnType; export default Card; //# sourceMappingURL=Card.svelte.d.ts.map