import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; /** * Card description component. * * @packageDocumentation */ interface CardDescriptionProps extends Omit, 'class'> { class?: string; children: Snippet; } declare const CardDescription: import("svelte").Component; type CardDescription = ReturnType; export default CardDescription; //# sourceMappingURL=CardDescription.svelte.d.ts.map