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