/** * Subtracts one set(subtrahend) from another(minuend). * @param minuend Set of all items for which subtrahend will be removed. * @param subtrahend Set of items to remove from minuend. */ export declare function subtract(minuend: T[], subtrahend: T[]): T[];