import { FileImporter } from "../types/basic.cjs"; //#region src/core/helpers.d.ts declare const wrap: (value: T | T[] | null | undefined) => T[]; /** * * Dynamically imports a file at the given path with full TypeScript support, * including `tsconfig.json` path aliases. * * @param filePath - The path to the file to import. * @returns The imported module typed as `T`. * * @example * const config = await importFile('./config/app.ts') */ declare const importFile: FileImporter; //#endregion export { importFile, wrap };