import { CreateAccountAction, DeleteAccountAction, AddKeyAction, DeleteKeyAction, DeployContractAction, DeployGlobalContractAction, UseGlobalContractAction, StakeAction, FunctionCallAction, TransferAction, DeleteAccountParams, AddKeyParams, DeleteKeyParams, DeployContractParams, DeployGlobalContractParams, UseGlobalContractParams, StakeParams, FunctionCallParams, TransferParams } from '../types'; export declare class Actions { private constructor(); static createAccount(): CreateAccountAction; static deleteAccount(params: DeleteAccountParams): DeleteAccountAction; static addKey(params: AddKeyParams): AddKeyAction; static deleteKey(params: DeleteKeyParams): DeleteKeyAction; static deployContract(params: DeployContractParams): DeployContractAction; static deployGlobalContract(params: DeployGlobalContractParams): DeployGlobalContractAction; static useGlobalContract(params: UseGlobalContractParams): UseGlobalContractAction; static stake(params: StakeParams): StakeAction; static functionCall(params: FunctionCallParams): FunctionCallAction; static transfer(params: TransferParams): TransferAction; }