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