import React from 'react'; interface Props { /** * 当前页码 */ current: number; /** * 总页数 */ total: number; /** * 改变事件 */ onChange: (page: number) => void; className?: string; /** * 数字类名 */ numberCls?: string; /** * 按钮类名 */ buttonCls?: string; /** * 按钮禁用时的类名 */ buttonDisabledCls?: string; style?: React.CSSProperties; } declare const _default: ({ total, current, onChange, className, buttonCls, buttonDisabledCls, style, }: Props) => React.JSX.Element; export default _default;