import { OperationContentsAndResult, OperationContentsRegisterGlobalConstant } from '@mavrykdynamics/taquito-rpc'; import { Context } from '../context'; import { Operation } from './operations'; import { FeeConsumingOperation, ForgedBytes, GasConsumingOperation, StorageConsumingOperation } from './types'; /** * @description RegisterGlobalConstantOperation provides utility functions to fetch a newly issued operation of kind register_global_constant */ export declare class RegisterGlobalConstantOperation extends Operation implements GasConsumingOperation, StorageConsumingOperation, FeeConsumingOperation { private readonly params; readonly source: string; /** * @description Hash (index) of the newly registered constant */ readonly globalConstantHash?: string; constructor(hash: string, params: OperationContentsRegisterGlobalConstant, source: string, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context); get operationResults(): import("@mavrykdynamics/taquito-rpc").OperationResultRegisterGlobalConstant | undefined; get status(): import("@mavrykdynamics/taquito-rpc").OperationResultStatusEnum | "unknown"; get registeredExpression(): import("@mavrykdynamics/taquito-rpc").MichelsonV1Expression; get fee(): number; get gasLimit(): number; get storageLimit(): number; get errors(): import("@mavrykdynamics/taquito-rpc").MavrykGenericOperationError[] | undefined; get consumedGas(): string | undefined; get consumedMilliGas(): string | undefined; }