import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js"; import { RavenCommand } from "../../../Http/RavenCommand.js"; import { HttpRequestParameters } from "../../../Primitives/Http.js"; import { Stream } from "node:stream"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; import { ServerNode } from "../../../Http/ServerNode.js"; export declare class GetIndexNamesOperation implements IMaintenanceOperation { get resultType(): OperationResultType; private readonly _start; private readonly _pageSize; constructor(start: number, pageSize: number); getCommand(conventions: DocumentConventions): RavenCommand; } export declare class GetIndexNamesCommand extends RavenCommand { private readonly _start; private readonly _pageSize; constructor(start: number, pageSize: number); createRequest(node: ServerNode): HttpRequestParameters; setResponseAsync(bodyStream: Stream, fromCache: boolean): Promise; get isReadRequest(): boolean; } //# sourceMappingURL=GetIndexNamesOperation.d.ts.map