/** * This function can be used to import either JavaScript or JSON. Babel doesn't currently allow dynamic * imports of JSON modules so this reads the file and returns a synthetic import instead. **Only works * when the file ends in `.json`**. * * @param path Relative, file URI, or absolute path from either Windows or POSIX */ declare function hybridImport(path: string): Promise<{ default: any; }>; export { hybridImport as default };