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