import type { Context, Node } from '../../types'; /** * Returns a function that simulates the job of Node's `require`. The require * provider is then used by Source modules to access the context and js-slang standard * library */ export declare function getRequireProvider(context: Context): (x: string, node?: Node) => any; export type RequireProvider = ReturnType;