import type { Snippet } from 'svelte'; interface PromoCardProps { eyebrow?: string; title: string; description?: string; actionLabel?: string; badge?: string; class?: string; media?: Snippet; onaction?: () => void; } declare const PromoCard: import("svelte").Component; type PromoCard = ReturnType; export default PromoCard;