import type { Snippet } from 'svelte'; interface SectionHeaderProps { title: string; description?: string; eyebrow?: string; divider?: boolean; class?: string; actions?: Snippet; } declare const SectionHeader: import("svelte").Component; type SectionHeader = ReturnType; export default SectionHeader;