import { DataType } from './DataType';
export interface ResponseValue {
    type: DataType;
    format: string;
    value: string;
    b64: string;
    url: string;
}
