export type KeyboardSlide = 'none' | 'horizontal' | 'vertical' | 'both';
declare const useFocus: (containerRef: React.RefObject<HTMLElement>, autoFocus: boolean, slideWithKeyboard: KeyboardSlide, slideNext: () => void, slidePrev: () => void) => void;
export default useFocus;