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

declare const RedocApiDocument: (name: string, swagger?: Exclude<{
    specUrl?: string;
}, "spec">) => NextPage<InferGetStaticPropsType<typeof getStaticProps>>;

export = RedocApiDocument;
