export interface PaginationSummaryProps { activePage: number; totalItems: number; resultsPerPage: number; } export declare const DEFAULT_CLASS = "hods-pagination"; export declare const PaginationSummary: ({ activePage, totalItems, resultsPerPage }: PaginationSummaryProps) => import("react/jsx-runtime").JSX.Element;