import type { Plugin } from 'vite';
declare type Options = {
    include?: string | RegExp | (string | RegExp)[];
    exclude?: string | RegExp | (string | RegExp)[];
};
export declare function reactDocgen({ include, exclude, }?: Options): Plugin;
export {};
