import { BeaconConfig } from "@lodestar/config"; import { IndexedAttestation, SignedBeaconBlock, Slot, phase0 } from "@lodestar/types"; import { ISignatureSet } from "../util/index.js"; export declare function getAttestationDataSigningRoot(config: BeaconConfig, stateSlot: Slot, data: phase0.AttestationData): Uint8Array; export declare function getAttestationWithIndicesSignatureSet(config: BeaconConfig, stateSlot: Slot, attestation: Pick, attestingIndices: number[]): ISignatureSet; export declare function getIndexedAttestationSignatureSet(config: BeaconConfig, stateSlot: Slot, indexedAttestation: IndexedAttestation): ISignatureSet; export declare function getAttestationsSignatureSets(config: BeaconConfig, signedBlock: SignedBeaconBlock, indexedAttestations: IndexedAttestation[]): ISignatureSet[]; //# sourceMappingURL=indexedAttestation.d.ts.map