import { HooksInput } from './types/options'; import { IProps } from './types/props'; /** * Listen to both mousedown and click event and * trigger callback once. */ export declare const useMouseAction: (options: HooksInput) => IProps; /** * Listen to both mousedown and click event and * trigger callback once. */ export declare const useMouseDown: (options: HooksInput) => IProps; /** * Listen to both mouseup and click event and * trigger callback once. */ export declare const useMouseUp: (options: HooksInput) => IProps; export default useMouseAction;