import type { ThemeSize } from "../theme.types"; export interface ChipGroupProps extends React.ComponentProps<"div"> { /** Controls spacing between pills, by default controlled by `size` */ gap?: ThemeSize | number; /** Controls size of the child `Pill` components and gap between them, `'sm'` by default */ size?: "small" | "normal"; /** Determines whether child `Pill` components should be disabled */ disabled?: boolean; } export declare function ChipGroup(props: ChipGroupProps): import("react").JSX.Element;