export interface PaginatedItem {
    index: number;
    shouldDisplayEditForm: boolean;
    editFormDisplayedByUser?: boolean;
}
