import { BacktraceAttachment } from '@backtrace/sdk-core'; import { Readable } from 'stream'; import { IpcTransport } from '../../common/index.js'; export declare class IpcAttachment implements BacktraceAttachment { readonly name: string; private readonly _id; private readonly _ipc; constructor(name: string, _id: string, _ipc: IpcTransport); get(): Readable; }