///
import RekordboxAnlz from './RekordboxAnlz.js';
import RekordboxPdb from './RekordboxPdb.js';
/**
* Parse a Rekordbox PDB database file
*/
declare function parsePdb(data: Buffer): any;
/**
* Parse a Rekordbox PDB database file
*/
declare function parseAnlz(data: Buffer): any;
/**
* Utility generator that pages through a table and yields every present row.
* This flattens the concept of rowGroups and refs.
*/
declare function tableRows(table: any): Generator;
export { parseAnlz, parsePdb, RekordboxAnlz, RekordboxPdb, tableRows };