export declare class SsrRedirect extends Error { readonly status: number; readonly location: string; constructor(location: string, status?: 301 | 302 | 303 | 307 | 308); } export declare function redirect(location: string, status?: 301 | 302 | 303 | 307 | 308): never; export declare function isRedirect(err: unknown): err is SsrRedirect; //# sourceMappingURL=redirect.d.ts.map