import { IManagementClientConfig } from '../../config'; import { GenericResponses } from '../../responses'; import { ContentManagementQueryService } from '../../services'; import { BaseQuery } from '../base-query'; export declare class DeleteQuery extends BaseQuery { protected config: IManagementClientConfig; protected queryService: ContentManagementQueryService; action: string; constructor(config: IManagementClientConfig, queryService: ContentManagementQueryService, action: string); toPromise(): Promise; protected getAction(): string; }