import { GenericFilehandle } from 'generic-filehandle2';
import IndexedFasta from './indexedFasta';
export default class BgzipIndexedFasta extends IndexedFasta {
    constructor({ fasta, path, fai, faiPath, gzi, gziPath, }: {
        fasta?: GenericFilehandle;
        path?: string;
        fai?: GenericFilehandle;
        faiPath?: string;
        gzi?: GenericFilehandle;
        gziPath?: string;
    });
}
