/** * Get the coin type of the chain the address belongs to * * @param address bech32 encoded address to get coin type from */ export declare const useAddressCoinType: (address: string | undefined, isTestnet?: boolean) => { coinType?: string; error?: string; } | undefined;