import type { Component } from "./component";
export interface BaseComponent {
    type: string;
    id: string;
    name: string;
    fallback?: Component;
    triggers?: Record<string, string>;
}
