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