import { Store } from '@ngrx/store'; import { LGraphNode } from 'litegraph.js'; export declare class BaseNode extends LGraphNode { static store: Store; static check: () => void; titleColor: string; constructor(title?: string, ...other: any); static getNodeTitleColor(): string; onSelected(): void; onPropertyChanged(property: string, value: any, prevValue: any): void | boolean; onConnectionsChange(): void; onDrawTitleText(ctx: any, title_height: any, size: any, scale: any, title_text_font: any, selected: any): void; }