import { RefObject } from 'react';
type ParamsType = {
    execute: () => void;
    element: RefObject<HTMLElement>;
};
export declare const useEscPressed: ({ execute, element }: ParamsType) => void;
export {};
