import { ServerResponse } from '@frontmcp/sdk'; import { z } from 'zod'; export declare const RedirectSchema: z.ZodObject<{ status: z.ZodLiteral<302>; location: z.ZodString; }, "strip", z.ZodTypeAny, { status: 302; location: string; }, { status: 302; location: string; }>; export declare const NotFoundSchema: z.ZodObject<{ status: z.ZodLiteral<404>; body: z.ZodAny; message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; status: 404; body?: any; }, { message: string; status: 404; body?: any; }>; type CommonResponseResult = z.infer | z.infer | any; export declare const commonSuccessResponseHandler: (res: ServerResponse, result: CommonResponseResult) => void; export declare const commonFailResponseHandler: (res: ServerResponse, result: any) => void; export {};