import type { IwaArchiveInfoData } from '../types';
/**
 * Parse IWA protobuf archive info
 *
 * @see https://github.com/obriensp/iWorkFileFormat/blob/master/Docs/index.md#protobuf
 */
export declare const parseIwaProtobufArchiveInfo: (data: Buffer, cursor: number) => {
    archiveInfoData: IwaArchiveInfoData;
    nextCursor: number;
};
