import { JSONSchema7 } from "json-schema";
export type Routes = Record<string, Record<string, {
    parameters?: [
        {
            in: "path" | "query" | "header";
            name: string;
            schema: JSONSchema7;
            required: boolean;
        }
    ];
    body?: {
        parser?: "text" | "json" | "formdata";
        schema: JSONSchema7;
    };
}>>;
export declare const schema: JSONSchema7;
