import { CanActivate, ExecutionContext } from '@nestjs/common';
import { TranslationService } from 'src/common/services/translation.service';
export declare class AgentApprovedGuard implements CanActivate {
    private readonly translationService;
    constructor(translationService: TranslationService);
    canActivate(context: ExecutionContext): boolean;
}
