import { RavenCommand } from "../../Http/RavenCommand.js";
import { HttpRequestParameters } from "../../Primitives/Http.js";
import { ServerNode } from "../../Http/ServerNode.js";
import { Stream } from "node:stream";
import { IRaftCommand } from "../../Http/IRaftCommand.js";
export declare class SeedIdentityForCommand extends RavenCommand<number> implements IRaftCommand {
    private readonly _id;
    private readonly _value;
    private readonly _forced;
    constructor(id: string, value: number, forced?: boolean);
    get isReadRequest(): boolean;
    createRequest(node: ServerNode): HttpRequestParameters;
    setResponseAsync(bodyStream: Stream, fromCache: boolean): Promise<string>;
    getRaftUniqueRequestId(): string;
}
//# sourceMappingURL=SeedIdentityForCommand.d.ts.map