import type { Ref } from 'vue'; import type { TablePaginationConfig } from '../interface'; export declare const DEFAULT_PAGE_SIZE = 10; export declare function getPaginationParam(pagination: TablePaginationConfig | boolean | undefined, mergedPagination: TablePaginationConfig): any; export default function usePagination(totalRef: Ref, paginationRef: Ref, onChange: (current: number, pageSize: number) => void): [Ref, () => void];