import React from 'react'; interface Props { value?: Value; children?: React.ReactNode; } export declare function createUniversalProvider(id: string, Context: React.Context): React.MemoExoticComponent<({ value: explicitValue, children }: Props) => JSX.Element>; export {};