import { IBaseLogObject, IFlatLogObject, ISentryStreamOptions, IWithErrorLogObject } from '../../interfaces'; import { SentryStream } from '../sentry-stream'; export declare class BunyanPinoSentryStream extends SentryStream { constructor(args: ISentryStreamOptions); protected makeObject(recordString: string): IFlatLogObject; protected objectFromStringRecord(recordString: string): IBaseLogObject; protected makeFlatStructureFromError(data: IWithErrorLogObject | IFlatLogObject): IFlatLogObject; }