import { ConnectionString } from "./ConnectionString.js"; import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js"; import { EtlConfiguration } from "./EtlConfiguration.js"; import { RavenCommand } from "../../../Http/RavenCommand.js"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; export declare class UpdateEtlOperation implements IMaintenanceOperation { private readonly _taskId; private readonly _configuration; constructor(taskId: number, configuration: EtlConfiguration); getCommand(conventions: DocumentConventions): RavenCommand; get resultType(): OperationResultType; } interface UpdateEtlOperationResult { raftCommandIndex: number; taskId: number; } export {}; //# sourceMappingURL=UpdateEtlOperation.d.ts.map