import { SharedContracts } from './shared-contracts'; export declare namespace TaxonomyContracts { interface ITaxonomyContract { last_modified: string; name: string; id: string; codename: string; terms: ITaxonomyContract[]; } type ITemporaryTaxonomyListResponse = ITaxonomyContract[] | IListTaxonomyResponse; interface IListTaxonomyResponse { pagination: SharedContracts.IPaginationModelContract; taxonomies: ITaxonomyContract[]; } interface IViewTaxonomyResponseContract extends ITaxonomyContract { } interface IAddTaxonomyResponseContract extends ITaxonomyContract { } interface IDeleteTaxonomyResponseContract { } }