import type { Writable } from "svelte/store"; export const selectSearchContextKey = Symbol("select-search"); export type SelectSearchContext = { query: Writable; open: Writable; setOpen: (next: boolean) => void; };