interface IRoxStringInterface {
    new (defaultValue: string, variations?: ReadonlyArray<string>): IRoxStringInterface;
    readonly name: string;
    readonly defaultValue: string;
    getValue(context?: any): string;
}
declare const internalRoxString: IRoxStringInterface;
export declare class RoxString extends internalRoxString {
}
export {};
