import type { Snippet } from 'svelte'; type $$ComponentProps = { /** The headline. Pass a snippet instead of a string to mark part of it up. */ title: string | Snippet; /** Supporting paragraph below the headline. */ description?: string | Snippet; /** A pill, badge, or announcement link sitting above the headline. */ eyebrow?: Snippet; /** Call-to-action buttons. */ actions?: Snippet; /** * The second column: a code sample, screenshot, or live demo. Without it the * hero collapses to a single centred column. */ media?: Snippet; }; declare const Hero: import("svelte").Component<$$ComponentProps, {}, "">; type Hero = ReturnType; export default Hero;