/** * Port detection utility for finding available ports */ export interface PortOptions { startPort?: number; endPort?: number; host?: string; } /** * Find the next available port starting from a given port */ export declare function findAvailablePort(startPort?: number, options?: PortOptions): Promise; /** * Check if a specific port is available */ export declare function isPortAvailable(port: number, host?: string): Promise; /** * Get a list of commonly used development ports to avoid */ export declare function getCommonDevPorts(): number[]; /** * Find an available port that avoids common dev server conflicts */ export declare function findAvailablePortSafe(preferredPort?: number): Promise; //# sourceMappingURL=port-detector.d.ts.map