import { MantineSize } from '../../core'; import { InputVariant } from '../Input'; export interface PillsInputContextValue { fieldRef: React.RefObject; size: MantineSize | (string & {}); disabled: boolean | undefined; hasError: boolean | undefined; variant: InputVariant | (string & {}) | undefined; } export declare const PillsInputContext: import("react").Context;