import type { PairingCliChannel } from './pairing-channel.js'; export declare function approveChannelPairingFromCli(params: { channel: PairingCliChannel; accountId: string; code: string; }): { ok: true; senderId: string; } | { ok: false; error: string; };