import { HttpMethod } from "../api"; export interface SpecPath { /** * Path to implement. */ path: string; /** * List of HTTP methods to implement. */ methods: (HttpMethod | "options")[]; } export declare const getPathsFromSpecs: (specPaths: string[]) => Promise;