import { Payload } from './payload'; export declare enum AffirmationStatus { PENDING = "pending", OVERDUE = "overdue", REJECTED = "rejected", AFFIRMED = "affirmed", FAILED = "failed", CANCELED = "canceled" } export interface IAffirmation { affirm(payload: Payload, signature: string): Promise; reject(): Promise; cancel(): Promise; } //# sourceMappingURL=iAffirmation.d.ts.map