import __tsdown_shims_path from 'node:path'; import __tsdown_shims_url from 'node:url'; //#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; //#endregion export { getFreePort }; //# sourceMappingURL=get-free-port.d.mts.map