import { ObjectPropertyValue } from '../ObjectProperty';
/**
 * Value wrapper for structured properties carrying the struct type and payload.
 */
export declare class StructPropertyValue {
    type: string;
    value: ObjectPropertyValue;
    constructor(type: string, value: ObjectPropertyValue);
}
