/** * Creates navigator for menus and submenus. * * @param {Handsontable} hotMenu The Handsontable instance of the menu. * @returns {Paginator} */ export declare function createMenuNavigator(hotMenu: Record): { setCurrentPage: (index: number) => void; setPageCursorAt: (index: number) => void; getCurrentPage: () => number; toFirstItem: () => void; toLastItem: () => void; toNextItem: () => void; toPreviousItem: () => void; getSize: () => number; clear: () => void; };