import { InputBaseProperty } from "../../../property-panel/src/composition/entity/input-base-property";
export declare class NumberRangeProperty extends InputBaseProperty {
    constructor(componentId: string, designerHostService: any);
    getEditorProperties(propertyData: any): {
        properties: {
            readonly: {
                description: string;
                title: string;
                type: string;
                editor: {
                    enableClear: boolean;
                    editable: boolean;
                };
            };
            disabled: {
                description: string;
                title: string;
                type: string;
                visible: boolean;
            };
            placeholder: {
                description: string;
                title: string;
                type: string;
            };
        };
        setPropertyRelates: any;
        description: string;
        title: string;
        type: string;
        $converter: string;
    };
}
