import { IHasData } from '../IHasData';
export interface IDataView extends IHasData {
    getField(): string;
    setField(field: string): void;
}
