import { AlertEvent } from "./alert.event"; import { BlockEvent } from "./block.event"; import { Finding } from "./finding"; import { InitializeResponse } from "./initialize.response"; import { TransactionEvent } from "./transaction.event"; export declare type Initialize = () => Promise; export declare type HealthCheck = () => Promise; export declare type HandleTransaction = (txEvent: TransactionEvent) => Promise; export declare type HandleBlock = (blockEvent: BlockEvent) => Promise; export declare type HandleAlert = (alertEvent: AlertEvent) => Promise;