/// import { Attributes } from '@opentelemetry/api'; import build from 'pino-abstract-transport'; import type { LoggerOptions } from './'; export type PinoLogLine = { level: number; time: number; pid: number; hostname: string; msg: string; } & Attributes; export declare const parsePinoLog: (log: PinoLogLine) => { level: number; message: string; meta: { [attributeKey: string]: import("@opentelemetry/api").AttributeValue | undefined; time: number; pid: number; hostname: string; }; }; export type HyperDXPinoOptions = LoggerOptions & { apiKey?: string; getCustomMeta?: () => Attributes; }; export declare const getMixinFunction: () => { [x: string]: string; }; declare const _default: ({ apiKey, getCustomMeta, ...options }: HyperDXPinoOptions) => Promise<(import("stream").Transform & build.OnUnknown) | undefined>; export default _default; //# sourceMappingURL=pino.d.ts.map