import type { ThemeSize } from "../theme.types"; export interface ChipGroupContextValue { size?: ThemeSize; disabled: boolean | undefined; } export declare const ChipGroupContext: import("react").Context, useChipGroupContext: () => ChipGroupContextValue | null;