/** * Pure geometry for `FlowConnector` curves. Produces N cubic-Bezier path * strings that fan out at the icon edge and converge into a tight cluster * at the hub edge — the "merge before the node" shape. * * Both sides use the same 0-100 `viewBox`. Paths always start at x=0 and * end at x=100; the molecule scales the SVG via CSS so the path strings * are layout-independent. * * side="left" icon is at x=0, hub is at x=100 (paths flow → hub) * side="right" hub is at x=0, icon is at x=100 (paths flow → icon) * * Tunable constants are intentionally not exposed as props — the molecule * owns the geometric language. Add a prop here only when a real callsite * needs a different aesthetic. */ export declare function computeFlowPaths({ count, side, }: { count: number; side: "left" | "right"; }): readonly string[]; //# sourceMappingURL=compute-flow-paths.d.ts.map