import { HTMLAttributes } from 'react'; import { PressProps } from './types'; export interface UsePressResult { isPressed: boolean; pressProps: HTMLAttributes; } export declare function usePress(props: PressProps): UsePressResult;