import type { Snippet } from 'svelte'; type $$ComponentProps = { title: string; /** Supporting line below the heading. */ description?: string; /** Call-to-action buttons. */ actions?: Snippet; /** * Optional content above the heading (e.g. a pre-release note). Placed * before the title so the section can still *end* on the actions. */ before?: Snippet; /** Anything to sit below the actions, e.g. a secondary note. */ children?: Snippet; }; declare const Cta: import("svelte").Component<$$ComponentProps, {}, "">; type Cta = ReturnType; export default Cta;