export declare const VALIDATOR: unique symbol;
export interface Validator {
    validate(event: any): Promise<void>;
}
