import type { HtmlIngredientProps } from '../types.js'; export interface FieldSelectProps extends HtmlIngredientProps<'select', HTMLSelectElement> { } declare const FieldSelect: import("svelte").Component; type FieldSelect = ReturnType; export default FieldSelect;