import { Assertion } from './assertion'; import { DesignerEvent } from './designerEvent'; export declare class DesignerResult { 'timestamp'?: string; 'duration'?: number; 'activations'?: number; 'exception'?: boolean; 'error'?: string; 'properties'?: { [key: string]: object; }; 'assertions'?: Array; 'results'?: { [key: string]: object; }; 'dictionary'?: { [key: string]: object; }; 'messages'?: Array; 'matches'?: Array; 'events'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }