import * as React from "react"; import { type PathProps, type SkiaDefaultProps } from "@shopify/react-native-skia"; import type { PointsArray } from "../../types"; import type { PathAnimationConfig } from "../../hooks/useAnimatedPath"; export type ScatterShape = "circle" | "square" | "star"; type ScatterProps = { points: PointsArray; animate?: PathAnimationConfig; radius?: number | ((pt: PointsArray[number]) => number); shape?: ScatterShape; } & SkiaDefaultProps, "start" | "end">; export declare function Scatter({ points, animate, radius, shape, ...rest }: 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; }>; export {};