/// import { PathProps } from "@shopify/react-native-skia"; import { ComputePathProps } from "../../utils/math"; interface LineProps extends Pick { /** An array of tuples representing [time, value] pairs. */ points?: [number, number][]; /** * The width of the canvas. This value is not modifiable and will be injected by the parent component. */ width?: number; /** * The height of the canvas. This value is not modifiable and will be injected by the parent component. */ height?: number; strokeWidth?: number; curveType?: ComputePathProps["curveType"]; minValue?: number; maxValue?: number; } export declare const Line: React.FC; export {}; //# sourceMappingURL=Line.d.ts.map