import { Network } from "./network"; export declare function getCIDR(s: string, throwErrors?: boolean): number | null; export declare function sortNetworks(networks: Network[]): void; export declare function summarizeSortedNetworks(sorted: Network[]): Network[]; export declare function findNetworkGaps(aggregate: Network, sortedSubnets: Network[]): Network[]; export declare function parseBaseNetwork(s: string, strict?: boolean, throwErrors?: boolean): Network | null;