import { BaseAsset, Identity, Procedure } from '../../internal'; import { WaivePermissionsParams } from '../../types'; import { ExtrinsicParams, ProcedureAuthorization, TransactionSpec } from '../../types/internal'; /** * @hidden */ export type Params = WaivePermissionsParams & { identity: Identity; }; /** * @hidden */ export interface Storage { asset: BaseAsset; } /** * @hidden */ export declare function prepareWaivePermissions(this: Procedure, args: Params): Promise>>; /** * @hidden */ export declare function getAuthorization(this: Procedure, { identity: { did } }: Params): ProcedureAuthorization; /** * @hidden */ export declare function prepareStorage(this: Procedure, { asset }: Params): Promise; /** * @hidden */ export declare const waivePermissions: () => Procedure; //# sourceMappingURL=waivePermissions.d.ts.map