import { NextPage, InferGetStaticPropsType } from 'next/types';
import { SwaggerUIProps } from 'swagger-ui-react';
import { getSwaggerStaticProps as getStaticProps } from '../../../index-browser.js';

declare const SwaggerApiDocument: (name: string, swagger?: Exclude<SwaggerUIProps, "spec">) => NextPage<InferGetStaticPropsType<typeof getStaticProps>>;

export = SwaggerApiDocument;
