import { Plugin } from 'vite';

type Options = {
    source: {
        routes: string | string[];
        modals: string | string[];
    };
    output: string;
    format: boolean;
};

declare function Generouted(options?: Partial<Options>): Plugin;

export { Generouted as default };
