@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
11 lines (10 loc) • 321 B
TypeScript
import type { FormStep } from '../../ts/types';
declare const FormSteps: import("svelte").Component<{
steps?: Array<FormStep>;
currentPath?: string;
ariaValueText?: string;
progressBarLabel?: string;
class?: string;
}, {}, "">;
type FormSteps = ReturnType<typeof FormSteps>;
export default FormSteps;