import type { Context, ContextRequestEvent } from "../../context.ts";
declare const testContext: (
/** Class to create context request event. */
classFactory: () => typeof ContextRequestEvent, 
/** Factory to create the context creator. */
createFactory: () => <ValueType>(key: unknown) => Context<typeof key, ValueType>) => void;
export { testContext };
