import type { Reader } from '../../..';
/** End Section Return Type */
export type Grib2EndSection = ReturnType<typeof parseGrib2Section8>;
/**
 * # SECTION 8 - END SECTION
 *
 * ## Links
 * - [Docs](https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_sect8.shtml)
 * @param section - byte block for section 8
 * @returns - parsed end section
 */
export declare function parseGrib2Section8(section: Reader): {
    /** Name of Grib section */
    sectionName: string;
    /** "7777" - Coded according to the International Alphabet Number 5 */
    endEncoded: string;
};
//# sourceMappingURL=index.d.ts.map