import type { ChemicalElement } from '../element'; import type { ComponentProps } from 'svelte'; import Select from 'svelte-multiselect'; type $$ComponentProps = Omit, `options` | `key`> & { value?: keyof ChemicalElement | null; empty?: boolean; selected?: string[]; minSelect?: number; key?: string | null; }; declare const PropertySelect: import("svelte").Component<$$ComponentProps, {}, "key" | "value">; type PropertySelect = ReturnType; export default PropertySelect;