UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

11 lines (10 loc) 443 B
import { MantineSize } from '../../core'; import { InputVariant } from '../Input'; export interface PillsInputContextValue { fieldRef: React.RefObject<HTMLInputElement | null>; size: MantineSize | (string & {}); disabled: boolean | undefined; hasError: boolean | undefined; variant: InputVariant | (string & {}) | undefined; } export declare const PillsInputContext: import("react").Context<PillsInputContextValue | null>;