export interface IFFChunk {
    data: Uint8Array;
    offset: number;
    type: string;
}
/** An Interchange File Format reader and writer */
export declare class IFF {
    type: string;
    chunks: IFFChunk[];
    parse(data: Uint8Array): void;
    write(): Uint8Array;
}
