import { type GetNetworkOptions } from './network-lookup'; import type { NetworkInfo } from './types'; /** * High-performance network lookup using Maps for O(1) performance * @param options - Search criteria * @returns NetworkInfo if found, undefined otherwise */ export declare const getNetwork: (options: GetNetworkOptions) => NetworkInfo | undefined;