import React from 'react'; import './index.less'; import type { RecordBoardContextValue } from '../../types'; export interface RecordBoardPaginationProps extends Partial> { className?: string; style?: React.CSSProperties; render?: (ctx: RecordBoardContextValue) => React.ReactNode; } /** * RecordBoard 下的分页:接入 packages/materials 的 Pagination,从 context 取 pagination / total / onPageChange;可透传 childComponentProps.pagination。 * 当 context 中 pagination 缺失时使用默认分页,避免在 Storybook 或未完整注入 context 时报错。 */ declare const RecordBoardPagination: React.FC; export default RecordBoardPagination;