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