import type { ComponentType } from '../../jsx'; import type { BaseStructureProps } from './types'; export interface QuadrantProps extends BaseStructureProps { /** 象限宽度 */ quadrantWidth?: number; /** 象限高度 */ quadrantHeight?: number; /** 是否显示坐标轴 */ showAxis?: boolean; /** 是否使用虚线样式,默认为true */ dashedAxis?: boolean; } export declare const Quadrant: ComponentType;