/**
 * Created by jayhamilton on 2/3/17.
 */
import { PropertyBase } from './property-base';
export declare class NumberProperty extends PropertyBase<number> {
    controlType: string;
    type: string;
    constructor(options?: {});
}
