import * as z from 'zod';
declare const NotifySchema: z.ZodObject<{
    id: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>;
    origin: z.ZodString;
}, "strip", z.ZodTypeAny, {
    id: string | number | null;
    origin: string;
}, {
    id: string | number | null;
    origin: string;
}>;
export type Notify = z.infer<typeof NotifySchema>;
export {};
