import { type WithElementRef } from "../../../utils.js"; import type { HTMLSelectAttributes } from "svelte/elements"; type Props = WithElementRef & { placeholder?: string; }; declare const Select: import("svelte").Component; type Select = ReturnType; export default Select;