export interface NetworkConfig {
    algodNode: string;
    apiUrl: string;
    algodIndexer: string;
}
export type Network = 'mainnet' | 'testnet' | 'local';
export declare const NETWORK_CONFIGS: Record<Network, NetworkConfig>;
export declare const tokenizedUrls: readonly ["/market/balances", "/market/order", "/market/orders", "/market/account/kyc/status", "/market/account/kyc/init", "/market/withdrawal-fee", "/market/operation-details", "/wallet/key", "/wallet/transactions", "/wallet/transfer", "/wallet/withdraw", "/wallet/whitelist", "/wallet/withdrawal-wallets"];
