export declare const DOUBLE_PRESS_TIMEOUT_MS = 800; /** * Returns a callback that requires two presses within 800ms to confirm. * First press calls `onFirstPress` and sets pending state; second press * within the timeout calls `onConfirm`. */ export declare function useDoublePress(setPending: (pending: boolean) => void, onConfirm: () => void, onFirstPress?: () => void): () => void; //# sourceMappingURL=useDoublePress.d.ts.map