UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

20 lines (19 loc) 610 B
import type { ErrorDetail, MultiSelectOption } from '../../../ts'; declare const MultiSelect: import("svelte").Component<{ name: string; label: string; values?: string | Array<string>; readonly?: boolean; placeholder?: string; options?: Array<MultiSelectOption>; preferredOptions?: Array<MultiSelectOption>; isRequired?: boolean; error?: ErrorDetail; helpText?: string; textOptional?: string; hiddenErrorText?: string; tagsLabel?: string; loadJs?: boolean; }, {}, "values">; type MultiSelect = ReturnType<typeof MultiSelect>; export default MultiSelect;