/** * Creates navigator for switching the focus of the filter's elements. * * @param {BaseUI[]} elements The elements to paginate to. * @returns {Paginator} */ export declare function createFocusNavigator(elements: unknown[]): { setCurrentPage: (index: number) => void; setPageCursorAt: (index: number) => void; getCurrentPage: () => number; toFirstItem: () => void; toLastItem: () => void; toNextItem: () => void; toPreviousItem: () => void; getSize: () => number; clear: () => void; };