import { PluginOption } from 'vite';

type RAConfig = {
    root: string;
    pageDir: string;
    cacheDir: string;
    aliasPage: string;
    lazyLoad: boolean;
};
type RAOpts = Partial<RAConfig>;
declare const raPages: (raOpts?: RAOpts) => PluginOption;

export { type RAConfig, type RAOpts, raPages as default, raPages };
