import { type HTMLSelectAttributes } from 'svelte/elements';
interface Props extends HTMLSelectAttributes {
selectValue?: string;
options?: string[];
onChange?: (value: string) => void;
}
declare const Select: import("svelte").Component;
type Select = ReturnType;
export default Select;