/** * Returns a cubic bezier from the given line with evenly spaced control points. * * @param ps a 2d line represented by two points * * @doc mdx */ declare function lineToCubic(ps: number[][]): number[][]; export { lineToCubic };