interface Props { children?: import('svelte').Snippet<[{ selected: boolean; highlighted: boolean; }]>; value: unknown; class?: string; disabled?: boolean; } declare const SelectOption: import("svelte").Component; type SelectOption = ReturnType; export default SelectOption;