//#region src/get-free-port.d.ts
/**
 * Finds and returns a free port on the local machine by creating a temporary server that listens on port 0. The operating system assigns an available port, which is then retrieved and returned.
 *
 * @returns A promise that resolves to a free port number.
 */
declare function getFreePort(): Promise<number>;
//#endregion
export { getFreePort };
//# sourceMappingURL=get-free-port.d.cts.map