import { type SkFont } from "@shopify/react-native-skia"; import { type SharedValue } from "react-native-reanimated"; interface LabelEntry { x: number; y: number; label: string; alpha: number; } /** * A single pre-allocated text label driven by a shared value array. * Reads the entry at `index` — positioned off-screen when the index * exceeds the array length. */ export declare function AnimatedLabel({ entries, index, font, color, }: { entries: SharedValue; index: number; font: SkFont; color: string; }): import("react").JSX.Element; export {}; //# sourceMappingURL=AnimatedLabel.d.ts.map