import { NestMiddleware } from '@nestjs/common'; import { ProfilerOptions } from '../common/profiler-options.interface'; export declare function setProfilerAuthOptions(options: ProfilerOptions): void; export declare function buildSessionCookie(username: string, password: string): string; export declare function clearSessionCookie(): string; export declare function verifySessionCookie(cookieHeader: string | undefined, username: string, password: string): boolean; export declare function createProfilerAuthMiddleware(): (req: any, res: any, next: () => void) => void; export declare class ProfilerAuthMiddleware implements NestMiddleware { use(_req: any, _res: any, next: () => void): void; }