import { Context } from './types'; export declare const setCtx: (c: Context) => Context; export declare const getCtx: () => Context; export declare const getCtxItem: (key: string) => T; export declare const setCtxItem: (key: string, value: T) => void; export declare const pushCtxItem: (key: string, value: T) => void;