import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
import { ChatCompletionEventPreview } from "./chatcompletioneventpreview.js";
export type FeedResultChatCompletionEventPreview = {
    results?: Array<ChatCompletionEventPreview> | undefined;
    next?: string | null | undefined;
    cursor?: string | null | undefined;
};
/** @internal */
export declare const FeedResultChatCompletionEventPreview$inboundSchema: z.ZodType<FeedResultChatCompletionEventPreview, z.ZodTypeDef, unknown>;
export declare function feedResultChatCompletionEventPreviewFromJSON(jsonString: string): SafeParseResult<FeedResultChatCompletionEventPreview, SDKValidationError>;
//# sourceMappingURL=feedresultchatcompletioneventpreview.d.ts.map