import { Plugin } from 'vite';

type RttistPluginOptions = {
    packageInfo: {
        name: string;
        rootDir: string;
    };
    tsRootDir: string;
    metadataOutDir: string;
};
declare function rttistPlugin(pluginOptions: RttistPluginOptions): Plugin;

export { RttistPluginOptions, rttistPlugin };
