import { FC, HTMLAttributes, PropsWithChildren } from 'react'; export type PaginationListItemProps = PropsWithChildren>; /** * PaginationListItem * * List item used inside Pagination. * Wraps content in `
  • ` and applies base styles. */ export declare const PaginationListItem: FC;