export declare class AcDDTableProperty {
    static readonly keyPropertyName = "property_name";
    static readonly keyPropertyValue = "property_value";
    propertyName: string;
    propertyValue: any;
    static fromJson(jsonData: {
        [key: string]: any;
    }): AcDDTableProperty;
    setValuesFromJson(jsonData?: {
        [key: string]: any;
    }): void;
    toJson(): {
        [key: string]: any;
    };
    toString(): string;
}
