import BigNumber from 'bignumber.js'; import { AuthorizationRequest, Procedure } from '../../internal'; import { SetCustodianParams } from '../../types'; import { ExtrinsicParams, ProcedureAuthorization, TransactionSpec } from '../../types/internal'; /** * @hidden */ export type Params = { did: string; id?: BigNumber | undefined; } & SetCustodianParams; /** * @hidden */ export declare function prepareSetCustodian(this: Procedure, args: Params): Promise>>; /** * @hidden */ export declare function getAuthorization(this: Procedure, { did, id }: Params): ProcedureAuthorization; /** * @hidden */ export declare const setCustodian: () => Procedure; //# sourceMappingURL=setCustodian.d.ts.map