import type { AuditEvent, AuditSink } from "../types.js"; /** * Emits audit events as structured JSON to stderr via the existing logger. * Always active — this is the baseline audit trail. */ export declare class StderrSink implements AuditSink { readonly name = "stderr"; emit(event: AuditEvent): void; } //# sourceMappingURL=stderr.d.ts.map