import type { Snippet } from 'svelte'; interface Props { /** Small label above the headline, e.g. a section name. */ kicker?: string; /** Optional link for the kicker. */ kickerUrl?: string; /** The headline text. */ headline: string; /** Optional link for the headline. */ headlineUrl?: string; /** Supporting line below the headline. */ dek?: string; /** Extra content rendered after the headline block. */ children?: Snippet; } /** The kicker, headline and dek at the top of an ArcCluster embed; only the headline is required. */ declare const ArcHeader: import("svelte").Component; type ArcHeader = ReturnType; export default ArcHeader;