export declare class StringValue {
    value: string;
    constructor(value?: string);
    toString(): string;
}
