import { Schema } from "../schema"; import { HTTPMethod } from "./props"; declare const getSchemaPaths: (schema: Schema) => Record | undefined; declare const getMethodsFromSchemaPath: (path: Record) => { [key in HTTPMethod]?: any; }; export { getSchemaPaths, getMethodsFromSchemaPath };