export type FlatListItem<T = {}> = {
  key: string;
} & T;
