import type { HTMLSelectAttributes } from "svelte/elements"; type $$ComponentProps = HTMLSelectAttributes & { ref?: HTMLSelectElement | null; }; declare const NativeSelect: import("svelte").Component<$$ComponentProps, {}, "ref" | "value">; type NativeSelect = ReturnType; export default NativeSelect;