import { OperationContentsAndResult, OperationContentsDrainDelegate } from '@mavrykdynamics/taquito-rpc'; import { Context } from '../context'; import { Operation } from './operations'; import { ForgedBytes } from './types'; /** * * @description DrainDelegateOperation provides utility functions to fetch a new operation of kind drain_delegate * */ export declare class DrainDelegateOperation extends Operation { private readonly params; constructor(hash: string, params: OperationContentsDrainDelegate, raw: ForgedBytes, results: OperationContentsAndResult[], context: Context); get operationResults(): import("@mavrykdynamics/taquito-rpc").OperationMetadataBalanceUpdates[] | undefined; get consensusKey(): string; get delegate(): string; get destination(): string; }