import React from 'react'; import { LingXiFC } from '@lingxiteam/types'; export interface MyPaginationProps { size: any; style?: any; className?: any; visible: boolean; disabled: boolean; simple: boolean; pageSize: number; total?: number; current?: number; pagination?: any; showQuickJumper?: boolean; showSizeChanger?: boolean; pageSizeOptions?: string; onPageChange?: (page: React.SetStateAction, size: number) => void; getEngineApis?: any; backgroundType?: any; } declare const MyPagination: LingXiFC; export default MyPagination;