declare export interface Options { cache?: { [file: string]: any }, transform?: (json: any) => any } declare export default function findAndReadPackageJson(directory: string, options?: Options): Promise<{ file: string, json: any }>