/** * Helper function to allow import of ESM modules in commonJS code, that prevents typescript * from compiling await import('package') to require() calls. * * @param module * @returns */ export declare function importDynamic(module: string): Promise;