/**
 * Created by jayhamilton on 2/3/17.
 */
export declare class PropertyBase<T> {
    value: T;
    key: string;
    label: string;
    required: boolean;
    order: number;
    controlType: string;
    options: any;
    type: string;
    constructor(props?: {
        value?: T;
        key?: string;
        label?: string;
        required?: boolean;
        order?: number;
        controlType?: string;
        options?: any;
    });
}
