import { Description } from "./Description";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class StringDescription extends Description {
    static $t: Type;
    private _value;
    get value(): string;
    set value(a: string);
}
