import { default as React } from 'react';
import { FormItemProps } from 'antd';
import { Expression } from 'geostyler-style';
export interface MaxScaleDenominatorProps extends Partial<FormItemProps> {
    /** The maxScaleDenominator value */
    value?: Expression<number>;
    /** The callback function that is triggered when the state changes */
    onChange?: (newMinScale: number) => void;
}
/**
 * Input field for the maximum scale of a rule.
 */
export declare const MaxScaleDenominator: React.FC<MaxScaleDenominatorProps>;
