import { NextConfig } from 'next';
import { NextraConfig } from 'nextra';

declare const defaultNextraOptions: NextraConfig;
interface WithGuildDocsOptions extends NextConfig {
    nextraConfig?: NextraConfig;
}
declare function withGuildDocs({ nextraConfig, ...nextConfig }?: WithGuildDocsOptions): NextConfig;

export { type WithGuildDocsOptions, defaultNextraOptions, withGuildDocs };
