/** * UML class node primitive. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; export declare function createClassNode(app: App, name: string, attributes: string[], methods: string[]): Group;