import { PolymeshPrimitivesStatisticsStatType } from '../../../node_modules/@polymeshassociation/polymesh-types/polkadot/types-lookup'; import { BTreeSet } from '@polkadot/types-codec'; import { Procedure } from '../../internal'; import { FungibleAsset, SetTransferRestrictionStatParams } from '../../types'; import { BatchTransactionSpec, ProcedureAuthorization } from '../../types/internal'; /** * @hidden */ export type SetAssetStatParams = { asset: FungibleAsset; } & SetTransferRestrictionStatParams; /** * @hidden */ export interface SetAssetStatsStorage { currentStats: BTreeSet; } /** * @hidden */ export declare function prepareSetAssetStats(this: Procedure, args: SetAssetStatParams): Promise>; /** * @hidden */ export declare function prepareStorage(this: Procedure, { asset }: SetAssetStatParams): Promise; /** * @hidden */ export declare function getAuthorization(this: Procedure, { asset, stats }: SetAssetStatParams): ProcedureAuthorization; /** * @hidden */ export declare const setAssetStats: () => Procedure; //# sourceMappingURL=setAssetStats.d.ts.map