// API response wrapper type export interface ApiResponse { data: T success: boolean error: boolean message: string status: number }