import { HexBlob } from '@cardano-sdk/util'; import { UnitInterval } from '../../Common'; import type * as Cardano from '../../../Cardano'; export declare class Committee { #private; constructor(quorumThreshold: UnitInterval); toCbor(): HexBlob; static fromCbor(cbor: HexBlob): Committee; toCore(): Cardano.Committee; static fromCore(coreCommittee: Cardano.Committee): Committee; membersKeys(): Cardano.Credential[]; quorumThreshold(): UnitInterval; addMember(committeeColdCredential: Cardano.Credential, epoch: number): void; getMemberEpoch(committeeColdCredential: Cardano.Credential): number | undefined; } //# sourceMappingURL=Committee.d.ts.map