export default function commit({ cwd, message, files, dryRun }: {
	cwd: string;
	message: string;
	files: Array<string>;
	dryRun?: boolean;
}): Promise<void>;
