import { ScatterPlot } from '../plot'; import type { ComponentProps } from 'svelte'; import type { VacfInput, VacfOptions, VacfResult } from './index'; type $$ComponentProps = { result?: VacfResult; input?: VacfInput; vacf_options?: VacfOptions; panel?: `vacf` | `vdos` | `both`; show_summary?: boolean; max_visible_curves?: number; loading?: boolean; error_msg?: string; vacf_controls_open?: boolean; vdos_controls_open?: boolean; } & Omit, `controls_open`>; declare const VacfPlot: import("svelte").Component<$$ComponentProps, {}, "result" | "show_controls" | "loading" | "error_msg" | "vacf_controls_open" | "vdos_controls_open">; type VacfPlot = ReturnType; export default VacfPlot;