import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; import { Stream } from "./stream.js"; import { StreamsSummary } from "./streams-summary.js"; export type StreamsResponse = { data: Array; summary: StreamsSummary; }; /** @internal */ export declare const StreamsResponse$inboundSchema: z.ZodMiniType; export declare function streamsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=streams-response.d.ts.map