import { IIBCChannelConfig, Channel } from "./types"; import { UIProperties } from "../tx"; export declare class IBCChannelConfig implements IIBCChannelConfig { protected _channels: Channel[]; protected _disabled: boolean; constructor(disabled: boolean); get channels(): Channel[]; get uiProperties(): UIProperties; setChannels(channels: Channel[]): void; setDisabled(disabled: boolean): void; } export declare const useIBCChannelConfig: (disabled?: boolean) => IBCChannelConfig;