interface StepHeaderProps { step?: number; total?: number; eyebrow?: string; title: string; description?: string; class?: string; } declare const StepHeader: import("svelte").Component; type StepHeader = ReturnType; export default StepHeader;