/** The values that identify this session's records in Fun's log search. */ export interface FunkitTraceInfo { /** The active flow's checkout id, or null when no flow is open. */ traceId: string | null; /** Whatever the host passed as `FunkitConfig.debugTag`. */ debugTag: string | null; } export declare function getFunkitTraceInfo(): FunkitTraceInfo; /** Send buffered records now rather than waiting out the batch timer. */ export declare function flushFunkitLogs(): void; /** Route host-side debug events through the configured Funkit log pipeline. */ export declare function logFunkitEvent(title: string, data?: Record): void; //# sourceMappingURL=debugBridge.d.ts.map