import type { DisplayObjectConfig } from "@antv/g"; import { Group } from "@antv/g"; import type { BaseNodeStyleProps } from "@antv/g6"; import { Rect } from "@antv/g6"; import { VNode } from "vue"; export interface GVueNodeStyleProps extends BaseNodeStyleProps { component: VNode; } export declare class GVueNode extends Rect { static defaultStyleProps: Partial; constructor(options: DisplayObjectConfig); protected drawKeyShape(attributes: Required, container: Group): Group | undefined; }