import React from 'react'; import { SearchNavProps } from '../../types/searchNav'; /** * 1. Measures the width of all items based on their refs. */ export declare const measureItemWidths: (items: any, measurementRefs: any) => {}; /** * 2. Calculates the number of visible items based on available container width * and item widths. */ export declare const calculateVisibleCount: (containerWidth: any, moreButtonWidth: any, orderedItems: any, itemWidths: any) => number; declare const SearchNav: React.ForwardRefExoticComponent>; export default SearchNav;