import { PaginationPropHotKey } from './types'; type UsePaginationKeysParams = { containerEventListener?: HTMLElement | Window; hotKeys?: [PaginationPropHotKey?, PaginationPropHotKey?]; handleNext: (e: React.MouseEvent | KeyboardEvent) => void; handlePrevious: (e: React.MouseEvent | KeyboardEvent) => void; }; export declare const usePaginationKeys: (params: UsePaginationKeysParams) => void; export {};