import { Map } from "immutable";
import { Logger } from "./types";
export declare function is_authenticated(opts: {
    req: any;
    res: any;
    path: string;
    auth?: Map<string, any>;
    logger?: Logger;
}): boolean;
