import { EventType, LogOptions } from "../types/logging.js";
/**
 * Log an event that occurs in your application.
 * @param event The event that occurred.
 * @param options Options to include with the log message.
 */
export default function logEvent(event: EventType, options: Omit<LogOptions, 'eventType'>): Promise<void>;
//# sourceMappingURL=logEvent.d.ts.map