import { Procedure } from '../../internal'; import { Account, Balance, StakingLedger, UpdatePolyxBondParams } from '../../types'; import { ExtrinsicParams, ProcedureAuthorization, TransactionSpec } from '../../types/internal'; /** * @hidden */ export interface Storage { actingAccount: Account; actingBalance: Balance; controllerEntry: StakingLedger | null; isStash: boolean; } /** * @hidden */ export type Params = UpdatePolyxBondParams & ({ type: 'unbond'; } | { type: 'bondExtra'; }); /** * @hidden */ export declare function prepareUnbondPolyx(this: Procedure, args: Params): Promise> | TransactionSpec>>; /** * @hidden */ export declare function getAuthorization(this: Procedure, args: Params): ProcedureAuthorization; /** * @hidden */ export declare function prepareStorage(this: Procedure): Promise; /** * @hidden */ export declare const updateBondedPolyx: () => Procedure; //# sourceMappingURL=updateBondedPolyx.d.ts.map