import Animated from "react-native-reanimated"; export declare abstract class Driver { private readonly _value; private readonly _direction; private readonly _clock; protected abstract readonly _run: Animated.Adaptable; protected abstract readonly _rev: Animated.Adaptable; protected constructor(); readonly value: Animated.Value; readonly clock: Animated.Clock; readonly direction: Animated.Value<0 | 1 | -1>; run(): Animated.Node; rev(): Animated.Node; reset(): Animated.Node; }