export function readWorkspaces(options?: Options | undefined): AsyncGenerator<Workspace>;
export type NormalizedPackageJson = import('read-pkg').NormalizedPackageJson;
export type Workspace = {
    cwd: string;
    pkg: NormalizedPackageJson;
    workspace?: string;
};
export type Options = {
    cwd?: string | undefined;
    ignorePaths?: string[] | undefined;
    includeWorkspaceRoot?: boolean | undefined;
    skipWorkspaces?: boolean | undefined;
    workspace?: string[] | undefined;
};
//# sourceMappingURL=index.d.ts.map