import type { Plugin } from 'vite';
import { GitChangelog } from '@nolebase/vitepress-plugin-git-changelog/vite';
type GitChangelogOptions = Parameters<typeof GitChangelog>[0];
export interface NimiqVitepressVitePluginOptions {
    repoURL?: string;
    contentPath?: string;
    gitChangelog?: GitChangelogOptions | false;
}
export declare function NimiqVitepressVitePlugin({ repoURL, contentPath, gitChangelog, }: NimiqVitepressVitePluginOptions): Plugin[];
export {};
