import { Tag } from "../tag"; import { Decision, DecisionOptions } from "./decision"; /** * @description * A decision that represents a new tag that has been added to subject * * @extends Decision */ export declare class Classification extends Decision { constructor(confirmed: DecisionOptions, tag: Tag); tag: Tag; }