import { z } from 'zod';
export declare const CancellationEventSchema: z.ZodObject<{
    cdc: z.ZodString;
    motivo: z.ZodString;
}, "strip", z.ZodTypeAny, {
    cdc: string;
    motivo: string;
}, {
    cdc: string;
    motivo: string;
}>;
export type CancellationEventInput = z.input<typeof CancellationEventSchema>;
