import { NextResponse } from "next/server"; export declare type nextRedirectsprop = { href: string; asPath?: string; condition?: boolean; shallow?: boolean; fallBack?: string; }; export declare function Redirects({ href, condition, fallBack, shallow, asPath, }: nextRedirectsprop): null; export declare function serverRewitre(condition: boolean, url: string): NextResponse;