import type { Error, Option } from './index'; declare const Select: import("svelte").Component<{ big?: boolean; value?: string | number | boolean; values?: (string | number | boolean)[]; label?: string; icon?: string; required?: boolean; errors?: Error[]; field?: string | null; options?: Option[] | string[]; multiple?: boolean; }, {}, "value">; export default Select;