import type { FileChange } from '../types';
import type { Git } from '@yuki-no/plugin-sdk/infra/git';
import type { FileNameFilter } from '@yuki-no/plugin-sdk/utils/createFileNameFilter';
export declare const extractFileChanges: (headGit: Git, hash: string, fileNameFilter: FileNameFilter, rootDir?: string) => FileChange[];
