import { RemovableChipButtonProps } from './removable-chip'; import type * as React from "react"; export type ChipBodyProps = { /** Leading icon or avatar rendered before the label. */ icon?: React.ReactNode; /** Text label — rendered in a medium-weight span. */ label: React.ReactNode; /** Extra classes for the label span (e.g. `truncate capitalize`). */ labelClassName?: string; /** Optional trailing count/fraction rendered after the label. */ count?: React.ReactNode; } & Omit; /** * The clickable body of a segmented chip: a leading icon, a text label, and an * optional trailing count. Built on `RemovableChipButton`, so it inherits the * chip's hover, focus, and press styling and rounds its left edge to meet the * shell. Pair it with `RemovableChip` (which supplies the divider and trailing * × remove button) to assemble a full removable chip. */ export declare function ChipBody({ icon, label, labelClassName, count, ...props }: ChipBodyProps): React.JSX.Element; //# sourceMappingURL=chip-body.d.ts.map