import type { IOBuffer } from 'iobuffer'; import type { Header } from './header.ts'; import { readType } from './types.ts'; /** * Read data for the given non-record variable * @param buffer - Buffer for the file data * @param variable - Variable metadata * @returns - Data of the element */ export declare function nonRecord(buffer: IOBuffer, variable: Header['variables'][number]): Array>; /** * Read data for the given record variable * @param buffer - Buffer for the file data * @param variable - Variable metadata * @param recordDimension - Record dimension metadata * @returns - Data of the element */ export declare function record(buffer: IOBuffer, variable: Header['variables'][number], recordDimension: Header['recordDimension']): Array>; //# sourceMappingURL=data.d.ts.map