import React, { HTMLProps, ReactNode } from "react";
type PaginationLeftBaseProps = {
    children: ReactNode;
    leftBaseProps?: HTMLProps<HTMLDivElement>;
};
/**
 * PaginationLeftBase is the left side of the pagination container
 * Typically contains page information and items per page controls
 */
declare const PaginationLeftBase: React.FC<PaginationLeftBaseProps>;
export default PaginationLeftBase;
