import type { SankeyNodeAlign, Orientation } from '..'; import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = { show_controls?: boolean; controls_open?: boolean; orientation?: Orientation; node_width?: number; node_padding?: number; node_align?: SankeyNodeAlign; min_fraction?: number; max_links?: number; link_opacity?: number; show_node_labels?: boolean; toggle_props?: HTMLAttributes; pane_props?: HTMLAttributes; children?: Snippet; }; declare const SankeyControls: import("svelte").Component<$$ComponentProps, {}, "orientation" | "show_controls" | "min_fraction" | "max_links" | "node_align" | "node_width" | "node_padding" | "link_opacity" | "show_node_labels" | "controls_open">; type SankeyControls = ReturnType; export default SankeyControls;