/**
 * Get package.json in the entry path.
 *
 * @param entry Path to the project root. Defaults to process.cwd().
 */
export declare function getPackageJson(entry?: string): any | undefined;
export declare function walk(dir: string, filter?: RegExp): Promise<string[]>;
