//#region src/utils/ESMxCJSHelpers.d.ts declare const isESModule: boolean; /** * Require relative to the user project * * Note: Can resolve package that are installed in the user project, ex `'intlayer'` */ declare const getProjectRequire: (startDir?: string) => NodeJS.Require; /** * Require relative to the @intlayer/config package * * Note: Can resolve package that are installed in the config package, ex `'@intlayer/types'` */ declare const configESMxCJSRequire: NodeJS.Require; //#endregion export { configESMxCJSRequire, getProjectRequire, isESModule }; //# sourceMappingURL=ESMxCJSHelpers.d.ts.map