import type { PaneToggleProps } from '../../../overlays'; import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type Dims = { height: number; width: number; fullscreen: boolean; }; type $$ComponentProps = HTMLAttributes & { chart_class: string; css_prefix: string; css_var_fallbacks?: Record; wrapper?: HTMLDivElement; width?: number; height?: number; fullscreen?: boolean; fullscreen_toggle?: boolean; chrome_color?: string; controls_toggle_props?: PaneToggleProps; header_controls?: Snippet<[Dims]>; controls?: Snippet<[PaneToggleProps]>; body: Snippet; children?: Snippet<[Dims]>; }; declare const ChartShell: import("svelte").Component<$$ComponentProps, {}, "height" | "width" | "fullscreen" | "wrapper">; type ChartShell = ReturnType; export default ChartShell;