import { Transaction } from "./transaction"; import { TransactionResponse } from "./transaction_response"; export declare const protobufPackage = "proto"; /** The request and responses for freeze service. */ export interface FreezeService { /** * Freezes the nodes by submitting the transaction. The grpc server returns the * TransactionResponse */ freeze(request: Transaction): Promise; } export declare const FreezeServiceServiceName = "proto.FreezeService"; export declare class FreezeServiceClientImpl implements FreezeService { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); freeze(request: Transaction): Promise; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } export {}; //# sourceMappingURL=freeze_service.d.ts.map