export = AgentController; declare class AgentController { constructor(getAgentHandlers: any); getAgentHandlers: any; isInitialized: boolean; initializeResponse: {}; HealthCheck(call: any, callback: any): Promise; Initialize(call: any, callback: any): Promise; EvaluateBlock(call: any, callback: any): Promise; EvaluateTx(call: any, callback: any): Promise; EvaluateAlert(call: any, callback: any): Promise; initializeAgentHandlers(): Promise; initialize: any; handleBlock: any; handleTransaction: any; handleAlert: any; healthCheck: any; createBlockEventFromGrpcRequest(request: any): BlockEvent; createAlertEventFromGrpcRequest(request: any): AlertEvent; createTransactionEventFromGrpcRequest(request: any): TransactionEvent; formatFindings(findings: any): any; } import { BlockEvent } from "../../../../sdk"; import { AlertEvent } from "../../../../sdk"; import { TransactionEvent } from "../../../../sdk";