import { type Context, type Dispatch, type SetStateAction } from 'react'; import type { ChipOwnProps } from '../../chip/types/chip.js'; import type { ChipGroupReducerActions } from '../state/chip-group-state-reducer.js'; /** @internal */ export type InternalChipGroupContextProps = { chipGroupId?: string; expanded?: boolean; disabled?: boolean; size?: ChipOwnProps['size']; allChipsFit?: boolean; dispatch: Dispatch; setExpanded: Dispatch>; } | undefined; /** * The _InternalChipGroupContext provides access to required states and callbacks. * @internal */ export declare const InternalChipGroupContext: Context;