import { MockFn } from './types';
declare const resolveModulePath: (modulePath: string, context: string) => string;
declare const replace: (modulePath: string, context: string, value: any) => any;
declare const mock: (modulePath: string, context: string, mock?: MockFn) => any;
declare const flush: (modulePath: string, context: string) => boolean;
declare const flushAllModules: () => void;
export { flush, flushAllModules, mock, replace, resolveModulePath };
