import type React from 'react'; type OnFocusCb = (e: React.FocusEvent, ...args: unknown[]) => void; type UseOnBlurOut = ({ onFocus }: { onFocus: OnFocusCb; }) => OnFocusCb; declare const useOnSpecificFocus: UseOnBlurOut; declare const UseOnSpecificFocusWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{ onFocus: OnFocusCb; }>; export { useOnSpecificFocus, UseOnSpecificFocusWithSchema };