export declare abstract class StringValueObject {
    readonly value: string;
    constructor(value: string);
    toString(): string;
}
