import { Rpc } from "../../../../../helpers"; import { MsgCreateStableswapPool, MsgCreateStableswapPoolResponse, MsgStableSwapAdjustScalingFactors, MsgStableSwapAdjustScalingFactorsResponse } from "./tx"; export interface Msg { createStableswapPool(request: MsgCreateStableswapPool): Promise; stableSwapAdjustScalingFactors(request: MsgStableSwapAdjustScalingFactors): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); createStableswapPool(request: MsgCreateStableswapPool): Promise; stableSwapAdjustScalingFactors(request: MsgStableSwapAdjustScalingFactors): Promise; } export declare const createClientImpl: (rpc: Rpc) => MsgClientImpl;