import { SlottedContextValue } from "./useSlottedContext"; type WithRef = T & { ref?: React.Ref; }; export type ContextValue = SlottedContextValue>; /** Consume a value from a context & merge it with the provided props */ export declare function useContextProps(context: React.Context>, props: T, ref: React.Ref): [T, React.RefObject]; export {};