import type { PaneProps, PaneToggleProps } from '../../overlays'; import type { AxisConfig3D, CameraProjection3D, DataSeries3D, DisplayConfig3D, Surface3DConfig } from '../core/types'; import type { Snippet } from 'svelte'; type $$ComponentProps = { show?: boolean; x_axis?: AxisConfig3D; y_axis?: AxisConfig3D; z_axis?: AxisConfig3D; display?: DisplayConfig3D; camera_projection?: CameraProjection3D; auto_rotate?: number; series?: DataSeries3D[]; surfaces?: Surface3DConfig[]; toggle_props?: PaneToggleProps; pane_props?: PaneProps; children?: Snippet; }; declare const ScatterPlot3DControls: import("svelte").Component<$$ComponentProps, {}, "display" | "show" | "y_axis" | "x_axis" | "camera_projection" | "auto_rotate" | "z_axis">; type ScatterPlot3DControls = ReturnType; export default ScatterPlot3DControls;