export interface Transaction { id: string; amount: number; merchant: string; category: string; date: string; note?: string; syncStatus: 'pending' | 'synced' | 'error'; }