//#region src/route-prefix.d.ts declare const DEFAULT_ROUTE_PREFIX = "/api/interfere"; /** * Resolves the route prefix used by the Interfere proxy route handler and the * client-side SDK. Consumers can override `/api/interfere` by setting * `NEXT_PUBLIC_INTERFERE_ROUTE_PREFIX` in their environment, or by injecting * `globalThis.__INTERFERE_ROUTE_PREFIX__` (used by bundler plugins). * * The returned prefix is normalized: it always starts with `/` and never has a * trailing slash (except when the prefix is exactly `/`). */ declare function resolveRoutePrefix(): string; declare function normalizeRoutePrefix(prefix: string): string; //#endregion export { DEFAULT_ROUTE_PREFIX, normalizeRoutePrefix, resolveRoutePrefix };