import type { Reader } from '../Reader';
import type { Writer } from '../Writer';
/** Enum */
export declare class ByteProperty {
    readonly type: string;
    readonly value: string;
    constructor(type: string, value: string);
    static from(reader: Reader, name: string, size: number): ByteProperty;
    static to(target: Writer, value: ByteProperty): number;
}
