import { Express, Request, Response, NextFunction } from 'express';
import { Config, UnauthorizedConfig } from '../types';
export declare function autoCredentialsMaskerMiddleware(config: Config | UnauthorizedConfig): (req: Request, res: Response, next: NextFunction) => any;
export declare function registerAutoCredentialsMasker(app: Express, config: Config | UnauthorizedConfig): void;
