import { TonChainId } from "./chain-ids"; export declare const ORAI_BRIDGE_UDENOM = "uoraib"; export declare const ORAI_BRIDGE_EVM_FEE = "1"; export declare const ORAI_BRIDGE_CHAIN_FEE = "1"; export declare const BRIDGE_DENOM_PREFIX: { BSC: string; ETH: string; TRON: string; }; export declare const BRIDGE_PROXY_CONTRACTS: { "0x38": string; "0x01": string; "0x2b6653dc": string; }; export declare const IBC_WASM_CONTRACT = "orai195269awwnt5m6c843q6w7hp8rt0k7syfu9de4h0wz384slshuzps8y7ccm"; export declare const IBC_WASM_CONTRACT_TEST = "orai1jtt8c2lz8emh8s708y0aeduh32xef2rxyg8y78lyvxn806cu7q0sjtxsnv"; export type BridgeDenomPrefix = keyof typeof BRIDGE_DENOM_PREFIX; export type TonConfig = { wasmBridgeAddress?: string; tonBridgeAddress?: string; tonCenterUrl?: string; }; export declare const DEFAULT_TON_CONFIG: Record;