import { Request, Response } from 'express';
import { AuthRequest } from '../middleware/auth.middleware';
/** Expose whether CSM delegation is active, so the frontend can go read-only. */
export declare const getAuthConfig: (_req: Request, res: Response) => void;
export declare const login: (req: Request, res: Response) => Promise<void>;
export declare const getMe: (req: AuthRequest, res: Response) => Promise<void>;
export declare const logout: (req: AuthRequest, res: Response) => Promise<void>;
//# sourceMappingURL=auth.controller.d.ts.map