export declare class Log { readonly content: string; private readonly metadata?; private constructor(); static create(content: string, metadata?: Metadata): Log; toObject(): object; } type Metadata = { [key: string]: any; }; export {};