import React from 'react'; import '../g.scss'; declare const LabelPopoverTab: (props: IProps) => React.JSX.Element; export default LabelPopoverTab; export interface IProps { wrapStyle: React.CSSProperties; title: string; tabTitle: string; tableList: ITableList[]; attrKey?: string; change: Function; quantileValue: string; showColor: string; selectList: ISelectList[]; selectValue: string; linearValue: string[]; theme?: string; fillType?: string; isPure?: boolean; tabActiveValue?: string; isShowTab?: boolean; quantizeSelectList: ISelectList[]; quantizeSelectValue: string; quantizeValueList: IQuantizeValueList[]; quantizeNum?: number; } export interface ITableList { key: string; title: string; } export interface ISelectList { key: string; name: string; type: string; img: string; value: string[]; } export interface IQuantizeValueList { color: string; max: number; min: number; status?: string; }