import { z } from '@frontmcp/lazy-zod'; import { type ServerResponse } from '../common'; export declare const RedirectSchema: import("@frontmcp/lazy-zod").ZodObject<{ status: import("@frontmcp/lazy-zod").ZodLiteral<302>; location: import("@frontmcp/lazy-zod").ZodString; }, import("zod/v4/core").$strip>; export declare const NotFoundSchema: import("@frontmcp/lazy-zod").ZodObject<{ status: import("@frontmcp/lazy-zod").ZodLiteral<404>; body: import("@frontmcp/lazy-zod").ZodAny; message: import("@frontmcp/lazy-zod").ZodString; }, import("zod/v4/core").$strip>; 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 {}; //# sourceMappingURL=common.schema.d.ts.map