import type { Reader } from '../Reader';
import type { Writer } from '../Writer';
export declare class StrProperty {
    static from(reader: Reader, name: string, size: number): string;
    static to(target: Writer, value: string): void;
}
