import type { ChipColorVariant, ChipOnClick, ChipSizeVariant } from '../ChipNext';
import type { ChipGroupValue } from './types';
export type ChipGroupContextValue = {
    onClick: ChipOnClick;
    disabled?: boolean;
    value?: ChipGroupValue;
    size?: ChipSizeVariant;
    color?: ChipColorVariant;
};
export declare const ChipGroupContext: import("react").Context<ChipGroupContextValue | undefined>;
