UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

20 lines (19 loc) 638 B
import type { CheckboxWithSubSectionsOptions } from '../../../ts'; interface Props { class?: string; level1Legend: string; variation?: 'primary' | 'secondary'; options: CheckboxWithSubSectionsOptions; optionsName?: string; hasCheckAll?: boolean; forceCheckAll?: boolean; checkAllLabel?: string; level2Legend?: string; level3Legend?: string; helpText?: string; border?: boolean; loadJs?: boolean; } declare const CheckboxWithSubSets: import("svelte").Component<Props, {}, "options">; type CheckboxWithSubSets = ReturnType<typeof CheckboxWithSubSets>; export default CheckboxWithSubSets;