import { RestService, type RestServiceOptions } from "../lib/rest-service"; import type { DepositAddressNativeUnwrapParams, DepositAddressNativeWrapParams, DepositAddressNativeWrapResponse } from "./types"; export declare class DepositServiceClient extends RestService { static init(options: RestServiceOptions): DepositServiceClient; getDepositAddressForNativeWrap(params: DepositAddressNativeWrapParams): Promise; getDepositAddressForNativeUnwrap(params: DepositAddressNativeUnwrapParams): Promise; }