import { Connection } from '@solana/web3.js'; export declare type ConnectionWithInternals = Connection & { _rpcWebSocket: { close: () => Promise; }; }; export declare function closeConnection(connection: Connection, forceExit?: boolean): Promise;