import * as React from "react"; import { type PathProps } from "@shopify/react-native-skia"; import type { MaybeNumber, PointsArray } from "../../types"; import { type AreaPathOptions } from "../hooks/useAreaPath"; import { type PathAnimationConfig } from "../../hooks/useAnimatedPath"; export type AreaRangePointsArray = { x: number; xValue: PointsArray[number]["xValue"]; y: MaybeNumber; y0: MaybeNumber; yValue: PointsArray[number]["yValue"]; }[]; export type AreaRangeProps = ({ points: AreaRangePointsArray; upperPoints?: never; lowerPoints?: never; } | { points?: never; upperPoints: PointsArray; lowerPoints: PointsArray; }) & { animate?: PathAnimationConfig; } & AreaPathOptions & Partial>; export declare function AreaRange({ upperPoints, lowerPoints, 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; }>;