export interface PropertyDictionary {
    [index: string]: Property;
}
export declare class Property {
    id?: number;
    name: string;
    value: string;
    type: string;
    isSystem: boolean;
    target?: string;
    rawData: any;
    constructor(data: any);
    toJson(): any;
    getPostPayload(): any;
}
