// Tipos de respostas de API export interface ApiResponse { data?: T; error?: string; success: boolean; }