import type { StringRecord } from '@appium/types'; declare function resolveModuleRoot(): string; /** * Calculates the path to the current module's root folder. * The result is memoized for performance. * * @returns The full path to the module root directory. * @throws Error if the module root folder cannot be determined. */ export declare const getModuleRoot: typeof resolveModuleRoot & { cache: Map; }; /** * Reads and parses the package.json file from the module root. * * @returns The parsed package.json contents as a StringRecord. */ export declare function getModuleProperties(): StringRecord; export {}; //# sourceMappingURL=module.d.ts.map