import { ChainForkConfig } from "@lodestar/config";
import { Db, Repository } from "@lodestar/db";
import { AttesterSlashing, ValidatorIndex } from "@lodestar/types";
/**
 * AttesterSlashing indexed by root
 *
 * Added via gossip or api
 * Removed when included on chain or old
 */
export declare class AttesterSlashingRepository extends Repository<Uint8Array, AttesterSlashing> {
    constructor(config: ChainForkConfig, db: Db);
    hasAll(attesterIndices?: ValidatorIndex[]): Promise<boolean>;
}
//# sourceMappingURL=attesterSlashing.d.ts.map