import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SlackNotificationChannelResponse = { notificationChannelId: string | null; warning: string | null; }; /** @internal */ export declare const SlackNotificationChannelResponse$inboundSchema: z.ZodType; export declare function slackNotificationChannelResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=slacknotificationchannelresponse.d.ts.map