/// import { type LeftPeekRightExpandingChipProps } from './type'; /** * LeftPeekRightExpandingChip * * Renders the last item of `icons` in a main chip and the remaining items as a vertical, * left‑aligned peek stack (collapsed to 24px). Hovering the main chip reveals and expands * the peek chips to the right and shifts the main chip accordingly. The top‑most peek chip * stays anchored while the rest slide out to the right preserving the original order. * Uses Framer Motion for smooth enter/leave and x‑translation, with z-index control via `expandedZIndex`. * Peek chip content is rendered only on hover to minimize layout work. */ export default function LeftPeekRightExpandingChip({ icons, expandedZIndex, sx }: LeftPeekRightExpandingChipProps): import("react").JSX.Element;