import { default as React } from 'react';
import { ScaleDenominator as GsScaleDenominator } from 'geostyler-style';
export interface InputScaleDenominatorProps {
    /** The scaleDenominator */
    scaleDenominator?: GsScaleDenominator;
    /** The callback method that is triggered when the state changes */
    onChange?: (scaleDenominator: GsScaleDenominator) => void;
}
export declare const COMPONENTNAME = "InputScaleDenominator";
/**
 * Combined UI for input fields for the minimum and maximum scale of a rule.
 */
export declare const InputScaleDenominator: React.FC<InputScaleDenominatorProps>;
