export declare const enum DataType { JSON = 0, Binary = 1, Stream = 2, JSONWithStreams = 3, JSONWithBinaries = 4, JSONWithStreamsAndBinaries = 5 } export declare function isMixedJSONDataType(type: DataType): boolean; export declare function containsStreams(type: DataType): boolean; export declare function containsBinaries(type: DataType): boolean; export declare function parseJSONDataType(containsBinary?: boolean, containsStreams?: boolean): DataType; export declare function analyseTypeofData(data: any): DataType;