import { ObjectType } from '../../common/type'; import { BasePaginationProps } from './use-pagination.type'; declare const usePagination: (props: BasePaginationProps) => { current: number | undefined; pageSize: number; total: number; onChange: (c: number, size?: number) => void; getRootProps: (externalProps?: TOther) => { [x: string]: (event: any) => void; } & TOther & { current: number | undefined; pageSize: number; }; }; export default usePagination; //# sourceMappingURL=use-pagination.d.ts.map