/** * @prettier */ import { BitGoBase } from '../bitgoBase'; import { Affirmation, AffirmationStatus, GetAffirmationParameters, IAffirmations, ITradingAccount } from '../trading'; export declare class Affirmations implements IAffirmations { private bitgo; private enterpriseId; private account?; constructor(bitgo: BitGoBase, enterpriseId: string, account?: ITradingAccount); /** * Lists all affirmations for an enterprise * @param status optional status to filter affirmations by */ list(status?: AffirmationStatus): Promise; /** * Retrieves a single affirmation by its ID * @param id ID of the affirmation to retrieve * @param accountId ID of the trading account that the affirmation belongs to */ get({ id, accountId }: GetAffirmationParameters): Promise; } //# sourceMappingURL=affirmations.d.ts.map