import * as React from "react"; interface ProviderProps { children: JSX.Element | null; } type ProviderValue = [ Record, (state: Record) => void ]; declare const SessionContext: React.Context; declare const SessionProvider: (props: ProviderProps) => React.JSX.Element; export { SessionContext, SessionProvider };