export type TStatus = 'init' | 'loading' | 'success' | 'failed'; export interface IPagination { page: number; size: number; totalPages: number | null; totalRecords: number; }