import { type SkFont, type SkPath } from "@shopify/react-native-skia"; import { type SharedValue } from "react-native-reanimated"; interface BadgeData { path: SkPath; textX: number; textY: number; text: string; bgColor: string; textColor: string; } export declare function BadgeOverlay({ badge, font, borderColor, borderWidth, offsetX, offsetY, }: { badge: SharedValue; font: SkFont; /** Pill border color. When unset, no border is drawn. */ borderColor?: string; /** Border stroke width (px) — only used when `borderColor` is set. */ borderWidth?: number; /** Horizontal nudge from the badge's anchor (px). */ offsetX?: number; /** Vertical nudge from the badge's anchor (px). */ offsetY?: number; }): import("react").JSX.Element; export {}; //# sourceMappingURL=BadgeOverlay.d.ts.map