import { OpenAPIV3 } from 'openapi-types'; interface SwrTemplate { path: string; method: string; media: OpenAPIV3.OperationObject; } declare function SwrTemplate({ method, path, media: { description, deprecated, tags, summary }, }: SwrTemplate): string; export { SwrTemplate };