/** * Get a module's directory when using ES modules. This is meant to be used with import.meta.url, but can * also be used with any file:/// URI */ declare function getModuleDir(fileUri: string): string; export { getModuleDir as default };