import { ConnectedWallet, Operation, WalletBlockchain } from '../models'; export declare type ConnectWalletInput = Readonly<{ walletPublicKey: string; timestamp: number; signature: string; walletBlockchain: WalletBlockchain; accountId?: string; connectWalletConflictResolutionTechnique?: 'FAIL' | 'DISCONNECT' | 'DISCONNECT_AND_CLOSE_OLD_ACCOUNT'; }>; export declare type ConnectWalletResult = ConnectedWallet; export declare type ConnectWalletService = Readonly<{ connectWallet: Operation; }>; //# sourceMappingURL=ConnectWallet.d.ts.map