/**
 * Value object for ByteProperty preserving both type name and value.
 */
export declare class BytePropertyValue {
    type: string;
    value: string;
    constructor(type: string, value: string);
}
