/** * @namespace Property * @description Compare Label */ import { ImbricateFileSystemDocumentInstanceProperty } from "../../document/definition"; /** * Target is an array of strings * Each string represents a label identifier, in uuid * * @param leftValue The left value * @param rightValue The right value * * @returns The comparison result * 1. If count of labels are different, more label property is greater * 2. If count of labels are same, compare each label identifier */ export declare const comparePropertyLabelValue: (leftValue: ImbricateFileSystemDocumentInstanceProperty, rightValue: ImbricateFileSystemDocumentInstanceProperty) => number;