import type { Snippet } from "svelte"; import type { HTMLSelectAttributes } from "svelte/elements"; type SelectProps = Omit & { label?: string; helperText?: string; errorText?: string; invalid?: boolean; size?: "sm" | "md" | "lg"; value?: string | string[] | number | null; class?: string; children?: Snippet; }; declare const Select: import("svelte").Component; type Select = ReturnType; export default Select; //# sourceMappingURL=Select.svelte.d.ts.map