import type { AddressInfo } from 'node:net'; /** * Pretty print your server instance address as soon as it is listening. * Matches the dev. server CLI output style. * @param server - Takes an `node:net` `AddressInfo` like object (address, family, port) or just a provided, pre-constructed string. * @example * * ```js * import * as gracile from '@gracile/gracile/hono'; * import { serve } from '@hono/node-server'; * * // ... * * serve( * { fetch: app.fetch, port: 3030, hostname: 'localhost' }, * (address) => gracile.printUrls(address), * ); * ``` */ export declare function printUrls(server: string | AddressInfo | null): void; //# sourceMappingURL=utilities.d.ts.map