import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ReplyCallback = { /** * Indicates whether the reply callback is active. */ active?: boolean | undefined; /** * The URL to which replies should be sent. */ url?: string | undefined; }; /** @internal */ export declare const ReplyCallback$inboundSchema: z.ZodType; export declare function replyCallbackFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=replycallback.d.ts.map