import * as React from 'react';
export default function createContext<T = any>(defaultValue: any): React.Context<T>;
