export = init; /** * Import aliases from package.json * @param {object} options */ declare function init(options: object): void; declare namespace init { export { addPath, addAlias, addAliases, isPathMatchesAlias, reset }; } declare function addPath(path: any): void; declare function addAlias(alias: any, target: any): void; declare function addAliases(aliases: any): void; declare function isPathMatchesAlias(path: any, alias: any): boolean; /** * Reset any changes maded (resets all registered aliases * and custom module directories) * The function is undocumented and for testing purposes only */ declare function reset(): void;