import type { SlotContext } from "rune-lab/core"; export type ObserverSection = "content" | "storage"; export interface ObserverState { enabled: boolean; targetUrl: string; activeSection: ObserverSection; } export declare function createObserverStateStore( ctx: SlotContext, ): ObserverState;