import type { ZodSchema } from 'zod';
import type { RecordUnknown } from '../types/common';
import type { Event } from '../types/event';
export declare function createEventValidator<Params extends ZodSchema>(validator: Params): Params;
export declare function createEvent<M extends RecordUnknown, P extends ZodSchema>(event: Event<M, P>): Event<M, P>;
