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