import { z } from 'zod'; import type { StoredStreamChunk } from '../../core/context.ts'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const getStreamChunksInput: z.ZodObject<{ workflowId: z.ZodString; key: z.ZodString; after: z.ZodOptional; }, z.core.$strip>; export type GetStreamChunksInput = z.infer; export type GetStreamChunksOutput = { chunks: StoredStreamChunk[]; }; export declare const getStreamChunksOperation: import("../operation-catalog.ts").OperationDefinition<{ workflowId: string; key: string; after?: unknown; }, GetStreamChunksOutput, unknown>; export declare const getStreamChunksRestBinding: UnknownRestBinding; export {};