import type { Component } from 'vue'; import { SubToolType, ToolType } from '../../../modules/house-planner/types'; export interface ToolbarTool { title: string; icon: Component; tool: ToolType; subTool?: SubToolType; children?: ToolbarTool[]; }