import type { FullPath } from "../../types/core"; declare function getEnvironment(fullPath?: FullPath): "pre" | "pro"; declare function getRel(newTab: boolean, noFollow: boolean): string; declare function getTarget(newTab: boolean): "_blank" | "_self"; declare function getRelativeToRootPath({ env, fullPath, to, }: { env: string; fullPath: FullPath; to?: string; }): string | undefined; export { getEnvironment, getRel, getRelativeToRootPath, getTarget };