/** ROUTES */ import { Handler } from 'express'; import { P2P } from '@shardeum-foundation/lib-types'; import { JoinRequest } from '@shardeum-foundation/lib-types/build/src/p2p/JoinTypes'; export declare const routes: { external: P2P.P2PTypes.Route[]; gossip: { 'gossip-join': P2P.P2PTypes.GossipHandler; 'gossip-valid-join-requests': P2P.P2PTypes.GossipHandler<{ joinRequest: P2P.JoinTypes.JoinRequest; sign: P2P.P2PTypes.Signature; }, string>; 'gossip-unjoin': P2P.P2PTypes.GossipHandler; 'gossip-sync-started': P2P.P2PTypes.GossipHandler; 'gossip-sync-finished': P2P.P2PTypes.GossipHandler; 'gossip-standby-refresh': P2P.P2PTypes.GossipHandler; }; };