import { AdminAuthService } from './admin-auth.service';
export declare class AdminAuthController {
    private adminAuthService;
    private readonly logger;
    constructor(adminAuthService: AdminAuthService);
    login(loginDto: {
        email: string;
        password: string;
    }): Promise<{
        token: string;
        user: any;
    }>;
}
