import { Plugin } from 'vite';

declare type TurbosnapPluginOptions = {
    /** Project root (https://vitejs.dev/config/#root) */
    rootDir: string;
};
declare function pluginTurbosnap({ rootDir, }: TurbosnapPluginOptions): Plugin;

export { pluginTurbosnap as default };
