import { $ } from "bun"; type EntitiesShell = { touch: (filePath: string) => ReturnType; gitStatus: () => ReturnType; gitRevParse: (ref: string) => ReturnType; gitFirstCommit: () => ReturnType; gitLogHashes: (args: string[]) => ReturnType; gitShow: (hash: string) => ReturnType; gitShowNameOnly: (hash: string) => ReturnType; gitShowPackageJsonAtTag: (tag: string, packagePath: string) => ReturnType; gitDiff: (file: string) => ReturnType; gitBranchShowCurrent: () => ReturnType; gitTag: (tagName: string, message: string, options: { force?: string; }) => ReturnType; gitTagList: (prefix: string) => ReturnType; gitTagLatest: (prefix: string) => ReturnType; gitTagInfo: (tagName: string) => ReturnType; gitTagExists: (tagName: string) => ReturnType; gitPushTag: (tagName: string) => ReturnType; gitDeleteTag: (tagName: string) => ReturnType; gitMergeBaseIsAncestor: (ancestor: string, descendant: string) => ReturnType; gitCheckout: (tagName: string) => ReturnType; gitPush: (branch: string) => ReturnType; turboRunBuild: (args: string[]) => ReturnType; runBiomeCheck: (filePath: string) => ReturnType; }; export declare const entitiesShell: EntitiesShell; export {}; //# sourceMappingURL=entities.shell.d.ts.map