import { writable } from 'svelte/store'; const selectedIdStore = writable(undefined); const optionClickCallbackStore = writable<(() => void) | undefined>(undefined); export { optionClickCallbackStore, selectedIdStore };