import * as z from "zod";
export declare const CancelResponsesEventSchema: z.ZodObject<{
    interaction_id: z.ZodOptional<z.ZodString>;
    utterance_id: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
}, "strip", z.ZodTypeAny, {
    interaction_id?: string;
    utterance_id?: string[];
}, {
    interaction_id?: string;
    utterance_id?: string[];
}>;
export type CancelResponsesEvent = z.infer<typeof CancelResponsesEventSchema>;
