import { CanActivate, ExecutionContext } from '@nestjs/common';
import { AiUsageTokenService } from '../services/token.service';
export declare class IngestionTokenGuard implements CanActivate {
    private readonly tokenService;
    constructor(tokenService: AiUsageTokenService);
    canActivate(ctx: ExecutionContext): Promise<boolean>;
}
