export default PaginationWrapper;
/**
 * Child of {@link Components.Root}.
 *
 * @name Components.PaginationWrapper
 * @type {React.FC}
 */
declare function PaginationWrapper({ paginationComponent: Pagination, actions, utils: { hooks, selectors } }: {
    paginationComponent: any;
    actions: any;
    utils: {
        hooks: any;
        selectors: any;
    };
}): JSX.Element | null;
