import type { WebsocketServerConfig } from '../../config/types.js';
/**
 * Interface for the ocpp network connection
 */
export interface INetworkConnection {
    bindNetworkHook(): (identifier: string, message: string) => Promise<void>;
    disconnect(tenantId: number, ocppConnectionName: string): Promise<boolean>;
    shutdown(): Promise<void>;
    addWebsocketServer?(websocketServerConfig: WebsocketServerConfig): Promise<void>;
    reloadTlsCertificates?(serverId: string): void;
}
