/// import type { Placement } from '@floating-ui/dom'; import { type Writable } from 'svelte/store'; export type ChartfullPopoverContext = { open: Writable; offset: Writable; placements: Writable; }; export declare function getDefaultChartfullPopoverContext(): ChartfullPopoverContext; export declare function getChartfullPopoverContext(): ChartfullPopoverContext; export declare function setChartfullPopoverContext(context: ChartfullPopoverContext): ChartfullPopoverContext;