import { eventTypes } from "../trace/trigger"; export interface SpanPointerAttributes { kind: string; direction: string; hash: string; } /** * Computes span pointer attributes * * @param {eventTypes} eventSource - The type of event being processed (e.g., S3, DynamoDB). * @param {any} event - The event object containing source-specific data. * @returns {SpanPointerAttributes[] | undefined} An array of span pointer attribute objects, or undefined if none could be computed. */ export declare function getSpanPointerAttributes(eventSource: eventTypes | undefined, event: any): SpanPointerAttributes[] | undefined; //# sourceMappingURL=span-pointers.d.ts.map