import { Output, DiffOutput, OverrideStandard } from './types'; /** * Categorize the changes * @param standard The standard object * @param diffs The array of diff changes * @returns The final output containing the diff changes as well as the type of change * * @private */ export default function categorizeChanges(standard: OverrideStandard, diffs: DiffOutput[]): Output;