import type { CommonContext } from "./definitions/context.js";
export declare function getWorkspaces({ cwd }: {
    cwd: CommonContext["cwd"];
}): Promise<{
    location: string;
    name: string;
}[]>;
