/** * Host Router Utilities * * Helper functions for type-safe pattern definitions. */ /** * Define hosts with type safety * * @example * ```ts * const hosts = defineHosts({ * admin: 'admin.*', * api: 'api.*', * app: ['*', 'www.*'] * }); * * router.host(hosts.admin).map(...); // Type-safe! * ``` */ export declare function defineHosts>(hosts: T): Readonly; //# sourceMappingURL=utils.d.ts.map