import type { HTMLSelectAttributes } from 'svelte/elements'; interface SelectProps extends HTMLSelectAttributes { label?: string; noAsterisk?: boolean; supportingText?: string; issues?: { message: string; }[] | undefined; variant?: 'outlined' | 'filled'; element?: HTMLSpanElement; } declare const NativeSelect: import("svelte").Component; type NativeSelect = ReturnType; export default NativeSelect;