/** * Generates a unique target id in this format: `#` or `//#` */ export declare function getTargetId(pkgName: string | undefined, task: string): string; /** * turns a target id into a package name and task name in this format: "packageName#taskName" where packageName is optional. * * If the packageName is //, that means that the task is meant to be run at the repo root level. */ export declare function getPackageAndTask(targetId: string): { packageName: string | undefined; task: string; }; export declare function getStartTargetId(): string; export declare function getStagedTargetId(task: string): string;