import type { FC, PropsWithChildren } from './'; export interface Context extends FC> { values: T[]; Provider: FC>; } export declare const globalContexts: Context[]; export declare const createContext: (defaultValue: T) => Context; export declare const useContext: (context: Context) => T;