import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js";
import { RavenCommand } from "../../../Http/RavenCommand.js";
import { DocumentConventions } from "../../Conventions/DocumentConventions.js";
export declare class SeedIdentityForOperation implements IMaintenanceOperation<number> {
    private readonly _identityName;
    private readonly _identityValue;
    private readonly _forceUpdate;
    constructor(name: string, value: number, forceUpdate?: boolean);
    getCommand(conventions: DocumentConventions): RavenCommand<number>;
    get resultType(): OperationResultType;
}
//# sourceMappingURL=SeedIdentityForOperation.d.ts.map