import { OperationContentsAndResult, OperationContentsIncreasePaidStorage } from '@mavrykdynamics/taquito-rpc'; import { Context } from '../context'; import { Operation } from './operations'; import { FeeConsumingOperation, ForgedBytes, GasConsumingOperation, StorageConsumingOperation } from './types'; /** * * @description IncreasePaidStorageOperation provides utility functions to fetch a new operation of kind increase_paid_storage * */ export declare class IncreasePaidStorageOperation extends Operation implements GasConsumingOperation, StorageConsumingOperation, FeeConsumingOperation { private readonly params; readonly source: string; constructor(hash: string, params: OperationContentsIncreasePaidStorage, source: string, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context); get operationResults(): import("@mavrykdynamics/taquito-rpc").OperationResultIncreasePaidStorage | undefined; get status(): import("@mavrykdynamics/taquito-rpc").OperationResultStatusEnum | "unknown"; get fee(): number; get gasLimit(): number; get storageLimit(): number; get errors(): import("@mavrykdynamics/taquito-rpc").MavrykGenericOperationError[] | undefined; get consumedMilliGas(): string | undefined; get amount(): string; get destination(): string; }