import type { BaseLog, ConsoleLog } from './type'; export declare function createBaseLog({ token, orgId, dataset, consoleLog, }: { token?: string; orgId?: string; dataset?: string; consoleLog?: ConsoleLog; }, { environment, workerId, app, version, context, type, correlationId, sessionId, executionContext, }: { correlationId?: string; sessionId?: string; environment?: 'development' | 'production'; type?: 'worker' | 'durableObject'; workerId?: string; app?: string; version?: string; context?: Record; executionContext?: { waitUntil(promise: Promise): void; }; }): BaseLog;