import React from "react";
import PropTypes from "prop-types";
interface Props {
    active?: boolean;
    children?: React.ReactNode;
    className?: string;
    disabled?: boolean;
    tag?: Function | string;
    onClick?: React.MouseEventHandler<HTMLButtonElement>;
}
declare const PageItem: {
    (props: Props): JSX.Element;
    propTypes: {
        active: PropTypes.Requireable<boolean>;
        children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
        className: PropTypes.Requireable<string>;
        disabled: PropTypes.Requireable<boolean>;
        tag: PropTypes.Requireable<string | ((...args: any[]) => any)>;
    };
    defaultProps: {
        active: boolean;
        className: string;
        disabled: boolean;
        tag: string;
    };
};
export default PageItem;
export { PageItem as CDBPageItem };
