import { ObjectValidator } from "@d3vtool/utils";
import { KazeContext, KazeNextFunction } from "./kaze";
import { TAllDataValidators } from "@d3vtool/utils/dist/types/validator/types";
export declare function parseBody(): (ctx: KazeContext, next: KazeNextFunction) => void;
export declare function jsonValidate<T extends ObjectValidator<Record<string, TAllDataValidators>>>(schema: T, noJsonErrorMsg?: string): (ctx: KazeContext, next: KazeNextFunction) => void;
