import { Generator } from '../../../services';
/**
 * Service for connecting a Vue frontend to a FoalTS application.
 */
export declare class ConnectVueCommandService {
    private generator;
    constructor(generator: Generator);
    /**
     * Configure a Vue project to interact with a FoalTS application.
     *
     * @param {string} path - The path to the Vue project directory
     * @returns {void}
     */
    run(path: string): void;
}
