export type PaginatedData = { count: number; next: string | null; previous: string | null; results: Data[]; };