import { BgzipIndexedFasta } from '@gmod/indexedfasta';
import IndexedFasta from '../IndexedFastaAdapter/IndexedFastaAdapter';
export default class BgzipFastaAdapter extends IndexedFasta {
    setupPre(): Promise<{
        fasta: BgzipIndexedFasta;
    }>;
}
