import { IManagementClientConfig } from '../../config'; import { TaxonomyResponses } from '../../responses'; import { ManagementQueryService } from '../../services'; import { BaseQuery } from '../base-query'; import { Identifiers } from '../../models'; export declare class GetTaxonomyQuery extends BaseQuery { protected config: IManagementClientConfig; protected queryService: ManagementQueryService; identifier: Identifiers.TaxonomyIdentifier; constructor(config: IManagementClientConfig, queryService: ManagementQueryService, identifier: Identifiers.TaxonomyIdentifier); toPromise(): Promise; protected getAction(): string; }