import type { ChemicalElement } from '../element'; import type { ComponentProps } from 'svelte'; import { MultiSelect as Select } from 'svelte-widgets'; 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, {}, "value" | "key">; type PropertySelect = ReturnType; export default PropertySelect;