import { OfficialOptions } from '../types'; import { WalletIdOptions } from '../wallets/wallets'; /** * Main download function - creates and coordinates wallet extension downloads * * @param walletId - The wallet identifier * @param releasesUrl - GitHub releases URL for the wallet * @param recommendedVersion - The recommended version to suggest * @returns Function that handles the download process */ declare const createWalletDownloader: (walletId: WalletIdOptions, releasesUrl: string, recommendedVersion: string) => (options: OfficialOptions) => Promise; export default createWalletDownloader;