import BigNumber from 'bignumber.js'; import { Account, AuthorizationRequest, PostTransactionValue, Procedure } from "../../internal"; export interface SubsidizeAccountParams { /** * Account to subsidize */ beneficiary: string | Account; /** * amount of POLYX to be subsidized. This can be increased/decreased later on */ allowance: BigNumber; } /** * @hidden */ export declare function prepareSubsidizeAccount(this: Procedure, args: SubsidizeAccountParams): Promise>; /** * @hidden */ export declare const subsidizeAccount: () => Procedure; //# sourceMappingURL=subsidizeAccount.d.ts.map