/// import { type RefundStatusType } from '../../TableCells'; import { SelectionProps } from '../../../types/index.js'; type RefundIconProps = { iconStyles?: React.CSSProperties; refundStatus?: RefundStatusType; refundTooltip?: React.ReactNode; refundCount?: number; isTextShown?: boolean; isSheetViewShown?: boolean; chipIndex?: number; selectionProps?: SelectionProps; }; declare const RefundIcon: ({ isTextShown, refundStatus, refundTooltip, refundCount, iconStyles, isSheetViewShown, chipIndex, selectionProps, }: RefundIconProps) => import("react").JSX.Element; export default RefundIcon;