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