export declare class FrontendManager { private readonly projectRoot; private readonly frontendPath; private readonly distPath; constructor(projectRoot: string); /** * フロントエンドのビルドファイルが存在するかチェック */ isBuilt(): boolean; /** * フロントエンドの依存関係をインストール */ installDependencies(): Promise; /** * フロントエンドをビルド */ build(): Promise; /** * フロントエンドの初期化(インストール + ビルド) */ initialize(): Promise; /** * ディストリビューションパスを取得 */ getDistPath(): string; } //# sourceMappingURL=frontend-manager.d.ts.map