/** * Hooks the AMD require() function to support SDK code. * * @param originalRequire The original require function. * @returns A hooked version of the require function. */ export declare function hookAmdRequire(originalRequire: typeof require): typeof require; /** * Hooks the AMD define() function to use the hooked require() function (see * hookAmdRequire()). * * @param originalDefine The original AMD define function. * @returns A hooked version of the define function. */ export declare function hookAmdDefine(originalDefine: typeof define): typeof define;