import { ISpanDuration } from '../../ISpanDuration';
import { IRuntimeEvent } from '../../IRuntimeEvent';
export declare class DisplayEvent implements IRuntimeEvent {
    target: string;
    span: ISpanDuration;
    constructor(target: string, span: ISpanDuration);
    timestamp: Date;
    name: string;
}
