import { LogMessageSeverity } from './LogMessageSeverity';
import { MethodSourceInfo } from './MethodSourceInfo';
export declare class LocalStorageMessage {
    severity: LogMessageSeverity;
    category: string;
    caption: string;
    description: string;
    parameters: any[] | null;
    exception: any | null;
    details: string | null;
    methodSourceInfo: MethodSourceInfo | null;
    timestamp: any;
    sequence: number;
    agentSessionId: string;
    sessionId: string;
    constructor(severity: LogMessageSeverity, category: string, caption: string, description: string, parameters: any[] | null, exception: any | null, details: string | null, methodSourceInfo: MethodSourceInfo | null, timestamp: any, sequence: number, agentSessionId: string, sessionId: string);
}
