import { AuthService } from './auth.service';
export declare class AuthController {
    private authService;
    constructor(authService: AuthService);
    login(signInDto: Record<string, any>): Promise<{
        access_token: string;
        user: {
            id: any;
            firstName: any;
            lastName: any;
            email: any;
            isActive: any;
            role: {
                id: any;
                name: any;
                description: any;
                permissions: any;
            };
        };
    }>;
}
