import { DataBare } from './data.bare';
export declare abstract class DataString extends DataBare<string> {
    constructor(value: string);
    getValue(_formatForDataType?: string): string;
    isValueTypeValid(value: any): boolean;
}
