export type PaginationProps = {
  pagevariable?: string

  page: number

  limit: number

  total: number

  rowProps?: any

  style?: any

  classes?: any
}

// export type PaginationWithStylesProps = PaginationProps & {
//   classes: any
// }
