import { Procedure } from '../../internal'; import { Identity, ReceiverAffirmationRequirement } from '../../types'; import { ExtrinsicParams, ProcedureAuthorization, TransactionSpec } from '../../types/internal'; /** * @hidden */ export interface Params { did: string; requirement: ReceiverAffirmationRequirement; } /** * @hidden */ export interface Storage { identity: Identity; } /** * @hidden */ export declare function prepareSetMandatoryReceiverAffirmation(this: Procedure, args: Params): Promise>>; /** * @hidden */ export declare function getAuthorization(this: Procedure, { did }: Params): ProcedureAuthorization; /** * @hidden */ export declare function prepareStorage(this: Procedure): Promise; /** * @hidden */ export declare const setMandatoryReceiverAffirmation: () => Procedure; //# sourceMappingURL=setMandatoryReceiverAffirmation.d.ts.map