UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

14 lines (13 loc) 390 B
import type { Snippet } from 'svelte'; import type { ErrorDetail } from '../../../ts'; interface Props { class?: string; legend?: string; error?: ErrorDetail; hiddenErrorText?: string; legendClass?: string; children?: Snippet; } declare const Fieldset: import("svelte").Component<Props, {}, "">; type Fieldset = ReturnType<typeof Fieldset>; export default Fieldset;