import { IBaseAmountConfig, IFeeConfig, IGasConfig, IGasSimulator, IMemoConfig, IRecipientConfig, ISenderConfig } from "./types"; import { IIBCChannelConfig } from "../ibc"; export declare const useTxConfigsValidate: (configs: { senderConfig?: ISenderConfig; recipientConfig?: IRecipientConfig; gasConfig?: IGasConfig; amountConfig?: IBaseAmountConfig; feeConfig?: IFeeConfig; memoConfig?: IMemoConfig; channelConfig?: IIBCChannelConfig; gasSimulator?: IGasSimulator; isIgnoringModularChain?: boolean; }) => { interactionBlocked: boolean; };