import * as z from 'zod';
declare const NotifySchema: z.ZodObject<{
    id: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodNull]>;
    origin: z.ZodString;
}, z.core.$strip>;
export type Notify = z.infer<typeof NotifySchema>;
export {};
