export function workspaceLookup(options?: WorkspaceLookupOptions): AsyncGenerator<LookupData>;
export type Installed = Record<string, import("./list.js").NormalizedPackageJson>;
export type LookupData = import("read-workspaces").Workspace & {
    installed: Installed;
};
export type WorkspaceLookupOptions = {
    ignorePaths?: string[] | undefined;
    includeWorkspaceRoot?: boolean | undefined;
    path?: string | undefined;
    skipWorkspaces?: boolean | undefined;
    workspace?: string[] | undefined;
};
//# sourceMappingURL=lookup.d.ts.map