import type { ThemeSize } from "../theme.types"; export interface ChipGroupContextValue { size: ThemeSize; disabled?: boolean; } export declare const ChipGroupProvider: import("react").Context, useChipGroupContext: () => ChipGroupContextValue | null; export interface ChipsInputContextValue { fieldRef: React.RefObject; size: ThemeSize; disabled?: boolean; hasError?: boolean; } export declare const ChipsInputContext: import("react").Context, useChipsInputContext: () => ChipsInputContextValue | null;