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