import { Classifier, OverrideStandard } from './types'; /** * Gets the classifier object from the standard object using the provided path * @param standard The standard object * @param path The JSONpointer path provided by the diff * @returns The classifier object containing `add`, `remove` & `edit` properties * * @private */ export default function classifier(standard: OverrideStandard, path: string): Classifier;