import { LibraryContext } from '../types.js';

declare function createContext(arg: any): LibraryContext;
declare function requestContext(arg: any): LibraryContext;
declare function terminateContext(arg: any): boolean;

export { createContext, requestContext, terminateContext };
