export interface PaginatedResponse { data: T[]; total: number; page: number; limit: number; total_pages: number; }