import { Plugin } from 'vite';

interface WayfinderOptions {
    patterns?: string[];
    actions?: boolean;
    routes?: boolean;
    formVariants?: boolean;
    path?: string;
    command?: string;
}
declare const wayfinder: ({ patterns, actions, routes, formVariants, path, command, }?: WayfinderOptions) => Plugin;

export { wayfinder };
