import { z } from 'zod';
import type { paths } from '../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi';
declare const endpoint = "/v2/commands/completions";
export declare const CompletionsParamsSchema: z.ZodObject<{
    userId: z.ZodString;
    parties: z.ZodArray<z.ZodString>;
    beginExclusive: z.ZodNumber;
    limit: z.ZodOptional<z.ZodNumber>;
    streamIdleTimeoutMs: z.ZodOptional<z.ZodNumber>;
}, z.core.$strip>;
export type CompletionsParams = z.infer<typeof CompletionsParamsSchema>;
export type CompletionsRequest = paths[typeof endpoint]['post']['requestBody']['content']['application/json'];
export type CompletionsResponse = paths[typeof endpoint]['post']['responses']['200']['content']['application/json'];
export declare const Completions: new (client: import("../../../../../core").BaseClient) => import("../../../../../core").ApiOperation<{
    userId: string;
    parties: string[];
    beginExclusive: number;
    limit?: number | undefined;
    streamIdleTimeoutMs?: number | undefined;
}, {
    completionResponse: import("../../../../../generated/canton/community/ledger/ledger-json-api/src/test/resources/json-api-docs/openapi").components["schemas"]["CompletionResponse"];
}[]>;
export {};
//# sourceMappingURL=completions.d.ts.map