/** * This Source Code is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright (c) Infonomic Company Limited */ import type { RoutesConfig, RoutesConfigInput } from '../@types/site-config.js'; /** * Merge a user-supplied (potentially partial) routes config with the * built-in defaults. Empty / unset keys fall back to `'/admin'`, `'/api'`, * and `'/sign-in'`. Returns a fully-populated `RoutesConfig` so consumers * don't need null checks at every call site. */ export declare function resolveRoutes(routes?: RoutesConfigInput): RoutesConfig;