import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { ChannelName } from "./channel-name.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export type ChannelListResponse = { channels: Array; }; /** @internal */ export declare const ChannelListResponse$inboundSchema: z.ZodMiniType; export declare function channelListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=channel-list-response.d.ts.map