import type Animated from "react-native-reanimated"; export type UseLoopResult = { readonly value: Animated.SharedValue; readonly start: () => void; readonly stop: () => void; }; export type UseLoopOptions = { animating?: boolean; easing?: Animated.EasingFunction; interval?: number; max?: number; min?: number; }; export declare const useLoop: ({ animating, interval, easing, min, max, }?: UseLoopOptions) => UseLoopResult; //# sourceMappingURL=useLoop.d.ts.map