import React from 'react'; declare function createContext(rootComponentName: string): readonly [{ (props: ContextValueType & { children: React.ReactNode; }): JSX.Element; displayName: string; }, (consumerName: string) => ContextValueType]; export { createContext };