import { ErrorLogConfig, GlobalLogConfig, RequestLogConfig, ResponseLogConfig } from './types'; declare function getGlobalConfig(): Required; declare function setGlobalConfig(config: GlobalLogConfig): void; declare function assembleBuildConfig(config: RequestLogConfig | ResponseLogConfig | ErrorLogConfig): Required; export { getGlobalConfig, setGlobalConfig, assembleBuildConfig, };