import type { InputContextValue } from '../types'; export declare const InputContext: import("react").Context; export declare const useInputContext: () => InputContextValue; /** * Optionally read the nearest Input context. Returns `null` when no Input * ancestor is present, allowing controls to work both standalone and inside * an Input. */ export declare const useOptionalInputContext: () => InputContextValue | null;