import type { SankeyNodeAlign, SankeyOrientation } from '..'; import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = { show_controls?: boolean; controls_open?: boolean; orientation?: SankeyOrientation; node_width?: number; node_padding?: number; node_align?: SankeyNodeAlign; 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" | "controls_open" | "node_align" | "node_width" | "node_padding" | "link_opacity" | "show_node_labels">; type SankeyControls = ReturnType; export default SankeyControls;