import { TaxonomySystemAttributes } from './taxonomy-system-attributes.class';
import { TaxonomyTerms } from './taxonomy-terms.class';
export declare class TaxonomyGroup {
    system: TaxonomySystemAttributes;
    terms: TaxonomyTerms[];
    constructor(system: TaxonomySystemAttributes, terms: TaxonomyTerms[]);
}
