import * as React from "react"; import { type PathProps, type SkiaDefaultProps } from "@shopify/react-native-skia"; import type { PointsArray } from "../../types"; import { type LinePathOptions } from "../hooks/useLinePath"; import type { PathAnimationConfig } from "../../hooks/useAnimatedPath"; export type CartesianLinePathProps = { points: PointsArray; animate?: PathAnimationConfig; } & LinePathOptions & SkiaDefaultProps, "start" | "end">; export declare function Line({ points, animate, curveType, connectMissingData, ...ops }: React.PropsWithChildren): React.FunctionComponentElement<{ path: import("@shopify/react-native-skia").SkPath; } & Omit, "start" | "end"> & { start?: import("@shopify/react-native-skia").AnimatedProp | undefined; end?: import("@shopify/react-native-skia").AnimatedProp | undefined; } & { animate?: PathAnimationConfig | undefined; }>;