import { PropsTypes } from '@orca-fe/deye-typings'; import { TextStyleType } from '../defs'; export interface EChartsTitleProps { id?: string; show?: boolean; text?: string; link?: string; target?: 'self' | 'blank'; textStyle?: Omit; subtext?: string; sublink?: string; subtarget?: 'self' | 'blank'; subtextStyle?: Omit; textAlign?: 'auto' | 'left' | 'right' | 'center'; textVerticalAlign?: 'auto' | 'top' | 'bottom' | 'middle'; triggerEvent?: boolean; padding?: number | number[]; itemGap?: number; zlevel?: number; z?: number; left?: string | number; top?: string | number; right?: string | number; bottom?: string | number; backgroundColor?: string; borderColor?: string; borderWidth?: number; borderRadius?: number | number[]; shadowBlur?: number; shadowColor?: string; shadowOffsetX?: number; shadowOffsetY?: number; } declare const EChartsTitle: (props: EChartsTitleProps) => null; export declare const eChartsTitlePropsDef: PropsTypes[]; export default EChartsTitle;