import type { GitFile, GitStatus } from './types.js'; export declare function read_status(cwd: string): Promise; export declare function parse_porcelain_z(raw: string): GitFile[]; export declare function has_staged_changes(files: GitFile[]): boolean; export declare function staged_file_count(files: GitFile[]): number;