import type { ComponentType } from '../../jsx'; import type { BaseItemProps } from './types'; export interface SimpleCircleNodeProps extends BaseItemProps { width?: number; height?: number; strokeWidth?: number; } export declare const SimpleCircleNode: ComponentType;