export type BlockOrUnblockModalState = { action: 'block' | 'unblock'; pubkeys: Array; onConfirmed?: () => void; } | null;