import type { EventBus } from "../events/event-bus"; import { swishItemsQueryKey } from "./keys"; export { getSwishQueryStorageKey } from "./storage-key"; export declare function createSwishQuery({ events, cacheBuster, customerId, storeDomain, }: { events: EventBus; cacheBuster: string; customerId: string | null | undefined; storeDomain: string | null | undefined; }): { client: import("@tanstack/query-core").QueryClient; cacheBuster: string; restored: import("@preact/signals-core").Signal; storageKey: string; keys: { items: typeof swishItemsQueryKey; }; }; export type SwishQuery = ReturnType;