/** * .what = runs `import(filePath)` on the file path * .why = enables dynamic import of practice declaration files at runtime * * .note = node 22.7+ handles typescript via --experimental-strip-types */ export declare const importExportsFromFile: ({ filePath, }: { filePath: string; }) => Promise;