import React from 'react';
import { ColProps } from 'antd/es/col';
import { GaugeEmptyValueMode } from '../../../../constants/single-style';
export interface ISingleEmptyValueProps {
    value: GaugeEmptyValueMode;
    onChange: (value: GaugeEmptyValueMode) => void;
    labelCol?: ColProps;
    wrapperCol?: ColProps;
}
export default function SingleEmptyValue(props: ISingleEmptyValueProps): React.JSX.Element;
