import { PropsTypes } from '@orca-fe/deye-typings'; import { AxisPointerType, ItemStyleType, LabelType, TextStyleType } from '../defs'; export declare type EChartsGridProps = Pick & Pick & { id?: string; show?: boolean; zlevel?: number; z?: number; left?: string | number; top?: string | number; right?: string | number; bottom?: string | number; width?: string | number; height?: string | number; containLabel?: boolean; backgroundColor?: string; tooltip?: { show?: boolean; trigger?: 'item' | 'axis' | 'none'; axisPointer?: AxisPointerType; position?: string | [number | string, number | string] | ((point: [number, number], params: any, dom: any, rect: any, size: any) => any); formatter?: string | ((...args: any[]) => string | HTMLElement | HTMLElement[]); valueFormatter?: string | ((value: string | number) => string); textStyle?: TextStyleType; extraCssText?: string; }; }; declare const EChartsGrid: (props: EChartsGridProps) => null; export default EChartsGrid; export declare const echartsGridPropsType: PropsTypes[];