/// <reference types="hoist-non-react-statics" />
import React from 'react';
import { ISingleStyleService } from '../../../../base-pandora-visualization/services/chart-style/charts/single/base';
import BasicComponent from '../../../Base/BasicComponent';
import { TThemeOption } from '../../../../constants';
export interface IStyleProps {
    chartStyleService: ISingleStyleService;
    themeOption: TThemeOption;
    getPopupContainer?: () => HTMLElement;
}
declare const enum ValueType {
    Min = "min",
    Max = "max"
}
export declare class SingleCircleStyleElement extends BasicComponent<IStyleProps, {}> {
    get formItemCol(): {
        labelCol: {
            span: number;
        };
        wrapperCol: {
            span: number;
        };
    } | undefined;
    valueValidator(type: ValueType, value: number): Promise<void>;
    numberValidator(value: any): Promise<void>;
    gaugeMaxValidator(value: any): Promise<void>;
    gaugeMinValidator(value: any): Promise<void>;
    render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IStyleProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IStyleProps, any> & typeof SingleCircleStyleElement) | (React.FunctionComponent<IStyleProps> & typeof SingleCircleStyleElement), {}>;
export default _default;
