/** * Calculate the number of chips that can be displayed in the container * @param {number} containerWidth - The width of the container. * @param {number[]} chipWidths - Array containing the widths of chips of selected items. * @param {number} [reservedSpace=MIN_RESERVED_SPACE] - Space reserved for the badge chip that shows the number of collapsed items. * @returns {{totalVisibleWidth: number, lastVisibleIndex: number, collapsedCount: number}} An object containing the total width of visible chips, the index of the last visible chip, and the count of collapsed chips. */ export declare function calculateVisibleChips(containerWidth: number, chipWidths: number[], reservedSpace?: number): { totalVisibleWidth: number; lastVisibleIndex: number; collapsedCount: number; };