import * as React from 'react'; import type { LayoutVariant } from '@redocly/theme/components/SidebarActions/SidebarActions'; type TemplateProps = { pageProps: { apiOptions: { layout: LayoutVariant; }; settings: { baseUrlPath: string; }; }; }; export default function AsyncApiDocs({ pageProps }: TemplateProps): React.JSX.Element; export {}; //# sourceMappingURL=template.d.ts.map