import type React from 'react'; import type { SxProps } from '@mui/material'; export interface RightLeftExpandingCenterChipProps { leftIcons?: React.ReactNode[]; rightIcons?: React.ReactNode[]; centerIcon: React.ReactNode; expandableCenterRight?: React.ReactNode; expandableCenterLeft?: React.ReactNode; sx?: SxProps; expandedZIndex?: number; }