/** * Custom hook to handle form submission using the Enter key. * @param {() => void} callback - The callback function to be executed when the Enter key is pressed. * @param {string} formKey - The unique key identifying the form. */ export declare const useEnterKeySubmit: (callback: () => void, formKey: string) => null;