import { Animated } from 'react-native'; /** * Long press progress driven by `Animated.timing` instead of a 10 ms * setState loop. Only `onFinish` reaches React. */ export declare const useLongPressButton: (longPressTime?: number, onFinish?: () => void) => { alignSelf: { [key: string]: "center" | "auto" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined; }; handlePressIn: () => void; handlePressOut: () => void; progressWidth: Animated.Interpolation<"0%" | "100%">; scaleValue: Animated.Value; }; //# sourceMappingURL=useLongPressButton.d.ts.map