export interface TorboxConfig { baseURL?: string; apiKey: string; version?: string; } export interface StandardResponse { success: boolean; error?: string | null; detail: string; data: T; }