import type { IwaData } from '../types';
/**
 * Parse IWA file data
 *
 * @see https://github.com/obriensp/iWorkFileFormat/blob/master/Docs/index.md#iwa
 */
export declare const parseIwa: (data: Buffer) => IwaData;
