import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; export type StreamHelixSessionRequest = { reference: string; since?: number | undefined; }; /** * Successful response */ export type StreamHelixSessionResponse = {}; /** @internal */ export type StreamHelixSessionRequest$Outbound = { reference: string; since?: number | undefined; }; /** @internal */ export declare const StreamHelixSessionRequest$outboundSchema: z.ZodMiniType; export declare function streamHelixSessionRequestToJSON(streamHelixSessionRequest: StreamHelixSessionRequest): string; /** @internal */ export declare const StreamHelixSessionResponse$inboundSchema: z.ZodMiniType; export declare function streamHelixSessionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stream-helix-session.d.ts.map