import { HunkLineType } from "../types.js";

//#region src/utils/parseLineType.d.ts
interface ParsedLine {
  line: string;
  type: Exclude<HunkLineType, 'expanded'>;
}
declare function parseLineType(line: string): ParsedLine | undefined;
//#endregion
export { ParsedLine, parseLineType };
//# sourceMappingURL=parseLineType.d.ts.map