type UseOnKeyDownArgs = {
    key: string;
    condition?: boolean;
    callbackFn: () => void;
};
export declare const useOnKeyDown: ({ key, condition, callbackFn, }: UseOnKeyDownArgs) => void;
export {};
