import { SharedValue } from "react-native-reanimated"; import { PathProps } from "react-native-svg"; interface AnimatedTickProps extends PathProps { size?: number; progress: SharedValue; onLayout?: () => void; } /** * Animated tick used as a small brick for the selection components (e.g: Checkbox, Radio, etc…) * It comes without any state logic. * */ export declare const AnimatedTick: ({ size, progress, ...pathProps }: AnimatedTickProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AnimatedTick.d.ts.map