import { type Database, type KakapoResponse } from 'kakapo'; import { type MediaDatabaseSchema } from '../mocks/database'; export interface LogRequestParams { path: string; method: string; request: any; response: KakapoResponse; error?: any; database?: any; } export declare enum WsDirection { Upstream = "UP", Downstream = "DOWN" } export interface LogWsMessageParams { url: string; dir: WsDirection; type: string; payload?: any; database?: Database; } export declare function logRequest(params: LogRequestParams): void; export declare function logWsMessage(params: LogWsMessageParams): void;