import React from 'react'; type EvType = React.KeyboardEvent; export declare const useEnterPress: (fn: (event: EvType) => void) => (event: EvType | undefined) => void; export declare const handleIgnoreEnterPress: (event: EvType | undefined) => void; export default useEnterPress;