/**
 * Base class for all events.
 */
export declare class BaseEvent {
    eventTime: string;
    producer: string;
    schemaURL: string;
    constructor(eventTime: string, producer: string, schemaURL: string);
    getSchema(): string;
}
