export declare const UTXO_SUPPORT: string[]; export declare const TENDERMINT_SUPPORT: string[]; export declare const CAIP_TO_COIN_MAP: { [key: string]: string; }; export declare const OTHER_SUPPORT: string[]; export declare const SOLANA_SUPPORT: string[]; export declare const TRON_SUPPORT: string[]; export declare const TON_SUPPORT: string[]; export declare const SUPPORTED_CAIPS: { UTXO: string[]; TENDERMINT: string[]; EIP155: string[]; OTHER: string[]; SOLANA: string[]; TRON: string[]; TON: string[]; }; /** * Classify a CAIP identifier into its chain type * @param caip - CAIP identifier (e.g., "bip122:000000000019d6689c085ae165831e93/slip44:0") * @returns Chain type: 'UTXO' | 'TENDERMINT' | 'EIP155' | 'OTHER' | 'SOLANA' | 'TRON' | 'TON' * @throws Error if CAIP is unsupported or invalid */ export declare function classifyCaip(caip: string): Promise; /** * Synchronous version of classifyCaip for use in non-async contexts */ export declare function classifyCaipSync(caip: string): string; //# sourceMappingURL=supported-caips.d.ts.map