import { Buffer } from 'buffer/';
import { DataRepresentationSectionValues } from '../sections/section-5';
/**
 * Converts data Buffer according to data representation section
 * @param drs Data Representation Section
 * @param data Data to be converted
 * @returns Converted data
 */
export declare const convertData: (drs: DataRepresentationSectionValues, data: Buffer) => number[];
