/**
 * Takes in an array of numbers, and returns the first one ith available port.
 * If no ports are available, return null
 */
export declare const getFirstActivePort: (ports: number[]) => Promise<number | null>;
