import type { ReferralItem, LinkTarget } from './types'; interface Props extends ReferralItem { /** * Link [target](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target), e.g., `_blank` or `_parent`. */ linkTarget?: LinkTarget; /** Use the narrower thumbnail sizing, for tight layouts. */ compact?: boolean; /** Render as a single full-width column instead of a half-width card. */ stacked?: boolean; /** Add a class to the card's root element. */ class?: string; } /** One related-story referral card — linked headline, kicker, time and thumbnail. Used by ReferralBlock, but works standalone. */ declare const Referral: import("svelte").Component; type Referral = ReturnType; export default Referral;