import * as React from "react"; import { type PathProps } from "@shopify/react-native-skia"; import type { PointsArray } from "../../types"; import { type AreaPathOptions } from "../hooks/useAreaPath"; import { type PathAnimationConfig } from "../../hooks/useAnimatedPath"; export type AreaProps = { points: PointsArray; y0: number; animate?: PathAnimationConfig; } & AreaPathOptions & Partial>; export declare function Area({ points, y0, 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; }>;