/** * Variant accessor for `/traces`. The chifra traces endpoint has * one obvious narrowed-output mode (`count`); base call retains the * polymorphic union for callers using `filter` or other flags. */ import type { RequestFn } from '../client.js'; import type { components } from '../generated.js'; import { type Query, type VerbFn } from '../verbs.js'; type TracesQuery = Query<'/traces'>; type Envelope = { data?: T[]; }; export interface TracesVerb extends VerbFn<'/traces'> { /** `?count=true` — return only the trace count for the transaction(s). */ count: (query: Omit) => Promise>; } export declare function makeTracesVerb(request: RequestFn): TracesVerb; export {}; //# sourceMappingURL=traces.d.ts.map